summaryrefslogtreecommitdiff
path: root/tests/admin_views/tests.py
diff options
context:
space:
mode:
authorZac Iloka <zachary.iloka@gmail.com>2026-02-23 14:44:28 +1300
committerJacob Walls <jacobtylerwalls@gmail.com>2026-02-23 13:14:03 -0500
commit9a8461f92250b49994aa133b564ec68617f6d78c (patch)
tree2fd7963ace3eb1d8ac47813a3f50d1bebca3de62 /tests/admin_views/tests.py
parent158fd81ef5a5647d27eb3065063284f9ee0a3ca4 (diff)
Fixed a typo in tests/admin_views/tests.py.
Diffstat (limited to 'tests/admin_views/tests.py')
-rw-r--r--tests/admin_views/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/admin_views/tests.py b/tests/admin_views/tests.py
index ea657fbf9f..4489dc9950 100644
--- a/tests/admin_views/tests.py
+++ b/tests/admin_views/tests.py
@@ -9444,7 +9444,7 @@ class AdminSiteFinalCatchAllPatternTests(TestCase):
response = self.client.get(url)
self.assertRedirects(response, "%s?next=%s" % (reverse("admin:login"), url))
- def test_unkown_url_without_trailing_slash_if_not_authenticated(self):
+ def test_unknown_url_without_trailing_slash_if_not_authenticated(self):
url = reverse("admin:article_extra_json")[:-1]
response = self.client.get(url)
self.assertRedirects(response, "%s?next=%s" % (reverse("admin:login"), url))