summaryrefslogtreecommitdiff
path: root/tests/urlpatterns
diff options
context:
space:
mode:
authorMin ho Kim <minho42@gmail.com>2019-08-12 20:53:36 +1000
committerCarlton Gibson <carlton.gibson@noumenal.es>2019-08-12 12:53:36 +0200
commit4f7328ce8a35160d155c41d362c3d674f8ef4d2d (patch)
treea84662be7dddb5fac5591ba064843245edd794c1 /tests/urlpatterns
parentd7673d9edabf96a18176325cd7fde41d96d89bb8 (diff)
downloaddjango-4f7328ce8a35160d155c41d362c3d674f8ef4d2d.tar.gz
Corrected multiple typos.
Diffstat (limited to 'tests/urlpatterns')
-rw-r--r--tests/urlpatterns/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/urlpatterns/tests.py b/tests/urlpatterns/tests.py
index 214739f678..3c41104506 100644
--- a/tests/urlpatterns/tests.py
+++ b/tests/urlpatterns/tests.py
@@ -35,7 +35,7 @@ class SimplifiedURLTests(SimpleTestCase):
self.assertEqual(match.kwargs, {'year': 2015})
self.assertEqual(match.route, 'articles/<int:year>/')
- def test_path_lookup_with_multiple_paramaters(self):
+ def test_path_lookup_with_multiple_parameters(self):
match = resolve('/articles/2015/04/12/')
self.assertEqual(match.url_name, 'articles-year-month-day')
self.assertEqual(match.args, ())