mirror of
https://github.com/django/django.git
synced 2025-08-04 19:08:28 +00:00
Fixed hanging indentation in various code.
This commit is contained in:
parent
aeb8c38178
commit
362813d628
40 changed files with 266 additions and 232 deletions
|
@ -38,8 +38,7 @@ class ReverseLookupTests(TestCase):
|
|||
p1 = Poll.objects.get(poll_choice__name__exact="This is the answer.")
|
||||
self.assertEqual(p1.question, "What's the first question?")
|
||||
|
||||
p2 = Poll.objects.get(
|
||||
related_choice__name__exact="This is the answer.")
|
||||
p2 = Poll.objects.get(related_choice__name__exact='This is the answer.')
|
||||
self.assertEqual(p2.question, "What's the second question?")
|
||||
|
||||
def test_reverse_field_name_disallowed(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue