[1.6.x] PEP8 cleanup

Backport of f8df55050c from master
This commit is contained in:
Anssi Kääriäinen 2014-07-16 12:48:49 +03:00
parent 227a0f27a6
commit 9be56ec62c
1 changed files with 1 additions and 1 deletions

View File

@ -230,7 +230,7 @@ class GenericRelationTests(TestCase):
def test_ticket_22998(self):
related = Related.objects.create()
content = Content.objects.create(related_obj=related)
node = Node.objects.create(content=content)
Node.objects.create(content=content)
# deleting the Related cascades to the Content cascades to the Node,
# where the pre_delete signal should fire and prevent deletion.