Skip to content

Commit 954c8fc

Browse files
committed
Fix spelling mistake in patterns that are ignored in coverage check
- Legacy-Id: 7080
1 parent 5e7d8c6 commit 954c8fc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/utils/test_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def check_url_coverage():
121121
# skip some patterns that we don't bother with
122122
def ignore_pattern(regex, pattern):
123123
import django.views.static
124-
return (regex in ("^_test500/",)
124+
return (regex in ("^_test500/$",)
125125
or regex.startswith("^admin/")
126126
or getattr(pattern.callback, "__name__", "") == "RedirectView"
127127
or getattr(pattern.callback, "__name__", "") == "TemplateView"

0 commit comments

Comments
 (0)