From 8b20e90058120dc4227ddfd656aac3552e6edf8b Mon Sep 17 00:00:00 2001 From: Andrew Liu <159852527+aliu39@users.noreply.github.com> Date: Fri, 20 Sep 2024 18:22:02 -0700 Subject: [PATCH] Add comment --- tests/sentry/toolbar/views/test_iframe_view.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/sentry/toolbar/views/test_iframe_view.py b/tests/sentry/toolbar/views/test_iframe_view.py index b961dfa3ef7d5..7cb625cc3fa91 100644 --- a/tests/sentry/toolbar/views/test_iframe_view.py +++ b/tests/sentry/toolbar/views/test_iframe_view.py @@ -60,6 +60,9 @@ def test_allowed_schemes(self): assert res.status_code == 403 def test_calls_url_matches(self): + """ + The `url_matches` helper fx has more in-depth unit test coverage. + """ mock_url_matches = Mock(return_value=False) allowed_origins = ["sentry.io", "abc.com"] referrer = "https://example.com"