Kaydet (Commit) 9d334e0a authored tarafından Xavier Fernandez's avatar Xavier Fernandez Kaydeden (comit) Tim Graham

Removed urlpatterns_reverse dependency in urlpatterns tests.

üst c3bbf1fd
from django.urls import path
from . import views
urlpatterns = [
path('extra/<extra>/', views.empty_view, name='inner-extra'),
]
......@@ -10,6 +10,6 @@ urlpatterns = [
path('articles/<int:year>/<int:month>/<int:day>/', views.empty_view, name='articles-year-month-day'),
path('users/', views.empty_view, name='users'),
path('users/<id>/', views.empty_view, name='user-with-id'),
path('included_urls/', include('urlpatterns_reverse.included_urls')),
path('included_urls/', include('urlpatterns.included_urls')),
path('<lang>/<path:url>/', views.empty_view, name='lang-and-path'),
]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment