Corrected multiple typos.

This commit is contained in:
Min ho Kim 2019-08-12 20:53:36 +10:00 committed by Carlton Gibson
parent d7673d9eda
commit 4f7328ce8a
3 changed files with 4 additions and 4 deletions

View file

@ -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, ())