summaryrefslogtreecommitdiff
path: root/tests/urlpatterns_reverse
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2015-11-03 11:55:10 +0200
committerVille Skyttä <ville.skytta@iki.fi>2015-11-03 11:58:13 +0200
commit3ee18400ae9b916da1a3bee9c9c630fd223a2d3c (patch)
treebed3af8d3fa7daeef7e8ba127d0e70a850a8bb7f /tests/urlpatterns_reverse
parenta10cbbbc17d4244812ef713437fa44207fe1a223 (diff)
Fixed #25668 -- Misc spelling errors
Diffstat (limited to 'tests/urlpatterns_reverse')
-rw-r--r--tests/urlpatterns_reverse/tests.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/urlpatterns_reverse/tests.py b/tests/urlpatterns_reverse/tests.py
index 799c7c32a2..93e86df71e 100644
--- a/tests/urlpatterns_reverse/tests.py
+++ b/tests/urlpatterns_reverse/tests.py
@@ -760,20 +760,20 @@ class NamespaceTests(SimpleTestCase):
"current_app should either match the whole path or shouldn't be used"
self.assertEqual(
'/ns-included1/test4/inner/',
- reverse('inc-ns1:testapp:urlobject-view', current_app='non-existant:test-ns3')
+ reverse('inc-ns1:testapp:urlobject-view', current_app='non-existent:test-ns3')
)
self.assertEqual(
'/ns-included1/test4/inner/37/42/',
- reverse('inc-ns1:testapp:urlobject-view', args=[37, 42], current_app='non-existant:test-ns3')
+ reverse('inc-ns1:testapp:urlobject-view', args=[37, 42], current_app='non-existent:test-ns3')
)
self.assertEqual(
'/ns-included1/test4/inner/42/37/',
reverse('inc-ns1:testapp:urlobject-view', kwargs={'arg1': 42, 'arg2': 37},
- current_app='non-existant:test-ns3')
+ current_app='non-existent:test-ns3')
)
self.assertEqual(
'/ns-included1/test4/inner/+%5C$*/',
- reverse('inc-ns1:testapp:urlobject-special-view', current_app='non-existant:test-ns3')
+ reverse('inc-ns1:testapp:urlobject-special-view', current_app='non-existent:test-ns3')
)