mirror of
https://github.com/django/django.git
synced 2025-10-26 23:26:08 +00:00
[1.10.x] Clarified URL regex check message with respect to include().
Backport of 7ed8b98f42 from master
This commit is contained in:
committed by
Tim Graham
parent
0a81f540c9
commit
51e5ca4462
@@ -46,7 +46,13 @@ class CheckUrlsTest(SimpleTestCase):
|
||||
self.assertEqual(len(result), 1)
|
||||
warning = result[0]
|
||||
self.assertEqual(warning.id, 'urls.W002')
|
||||
expected_msg = "Your URL pattern '/starting-with-slash/$' has a regex beginning with a '/'"
|
||||
expected_msg = (
|
||||
"Your URL pattern '/starting-with-slash/$' has a regex beginning "
|
||||
"with a '/'. Remove this slash as it is unnecessary. If this "
|
||||
"pattern is targeted in an include(), ensure the include() pattern "
|
||||
"has a trailing '/'."
|
||||
)
|
||||
|
||||
self.assertIn(expected_msg, warning.msg)
|
||||
|
||||
@override_settings(ROOT_URLCONF='check_framework.urls.name_with_colon')
|
||||
|
||||
Reference in New Issue
Block a user