Skip to content

Commit 9a6ba4b

Browse files
committed
fix: Django website tests
1 parent ead4678 commit 9a6ba4b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/frontendIntegration/django2x/polls/urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
urlpatterns = [ # type: ignore
77
path("index.html", views.send_file, name="index.html"), # type: ignore
88
path("login", views.login, name="login"), # type: ignore
9-
path("login-2.18", views.login_2_18, name="login"), # type: ignore
9+
path("login-2.18", views.login_2_18, name="login_218"), # type: ignore
1010
path("beforeeach", views.before_each, name="beforeeach"), # type: ignore
1111
path("testUserConfig", views.test_config, name="testUserConfig"), # type: ignore
1212
path(

tests/frontendIntegration/django3x/polls/urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
urlpatterns = [ # type: ignore
77
path("index.html", views.send_file, name="index.html"), # type: ignore
88
path("login", views.login, name="login"), # type: ignore
9-
path("login-2.18", views.login, name="login"), # type: ignore
9+
path("login-2.18", views.login_2_18, name="login_218"), # type: ignore
1010
path("beforeeach", views.before_each, name="beforeeach"), # type: ignore
1111
path("testUserConfig", views.test_config, name="testUserConfig"), # type: ignore
1212
path(

0 commit comments

Comments
 (0)