This commit is contained in:
Asif Saif Uddin (Auvi) 2020-07-29 09:35:50 +06:00
parent 6e2871680d
commit e75d169496

View File

@ -175,7 +175,7 @@ class FormatSuffixTests(TestCase):
] ]
urlpatterns = [ urlpatterns = [
path('purl/<int:parent>/', include(nested_patterns), {'foo': 'bar'}), path('purl/<int:parent>/', include(nested_patterns), {'foo': 'bar'}),
path('ppath/<int:parent>/', include(nested_patterns), {'foo': 'bar'}), re_path('^purl/(?P<parent>[0-9]+)/', include(nested_patterns), {'foo': 'bar'}),
] ]
test_paths = [ test_paths = [
# parent url() nesting child path() # parent url() nesting child path()