[1.7.x] Fixed a typo that Tim Graham noticed

Backport of d240b29c08 from master
This commit is contained in:
Alex Gaynor 2014-05-28 17:46:06 -07:00 committed by Tim Graham
parent 3d98941d5c
commit d192e02b27
1 changed files with 1 additions and 1 deletions

View File

@ -374,7 +374,7 @@ class ReverseShortcutTests(TestCase):
def test_reverse_by_path_nested(self): def test_reverse_by_path_nested(self):
# Views that are added to urlpatterns using include() should be # Views that are added to urlpatterns using include() should be
# reversible by doted path. # reversible by dotted path.
self.assertEqual(reverse('urlpatterns_reverse.views.nested_view'), '/includes/nested_path/') self.assertEqual(reverse('urlpatterns_reverse.views.nested_view'), '/includes/nested_path/')
def test_redirect_view_object(self): def test_redirect_view_object(self):