summaryrefslogtreecommitdiff
path: root/tests/urlpatterns/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/urlpatterns/tests.py')
-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, ())