mirror of
https://github.com/django/django.git
synced 2025-08-31 15:57:45 +00:00
[1.7.x] Fixed several typos in Django
Backport of 1dcc603eff
from master
This commit is contained in:
parent
d099c03789
commit
3d98941d5c
34 changed files with 40 additions and 40 deletions
|
@ -374,7 +374,7 @@ class ReverseShortcutTests(TestCase):
|
|||
|
||||
def test_reverse_by_path_nested(self):
|
||||
# Views that are added to urlpatterns using include() should be
|
||||
# reversable by doted path.
|
||||
# reversible by doted path.
|
||||
self.assertEqual(reverse('urlpatterns_reverse.views.nested_view'), '/includes/nested_path/')
|
||||
|
||||
def test_redirect_view_object(self):
|
||||
|
@ -440,7 +440,7 @@ class NamespaceTests(TestCase):
|
|||
self.assertEqual('/ns-included1/+%5C$*/', reverse('inc-ns1:inc-special-view'))
|
||||
|
||||
def test_namespace_pattern_with_variable_prefix(self):
|
||||
"When using a include with namespaces when there is a regex variable in front of it"
|
||||
"When using an include with namespaces when there is a regex variable in front of it"
|
||||
self.assertEqual('/ns-outer/42/normal/', reverse('inc-outer:inc-normal-view', kwargs={'outer': 42}))
|
||||
self.assertEqual('/ns-outer/42/normal/', reverse('inc-outer:inc-normal-view', args=[42]))
|
||||
self.assertEqual('/ns-outer/42/normal/37/4/', reverse('inc-outer:inc-normal-view', kwargs={'outer': 42, 'arg1': 37, 'arg2': 4}))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue