Adjusted code style of a few test data setup methods.

Thanks Mariusz for suggesting it.
This commit is contained in:
Simon Charette 2018-11-24 06:28:28 -05:00 committed by Tim Graham
parent 84e7a9f4a7
commit 7f63b894c0
7 changed files with 18 additions and 36 deletions

View file

@ -24,10 +24,7 @@ class MultiColumnFKTests(TestCase):
cls.usa = Country.objects.create(name="United States of America")
cls.soviet_union = Country.objects.create(name="Soviet Union")
# Creating People
cls.bob = Person()
cls.bob.name = 'Bob'
cls.bob.person_country = cls.usa
cls.bob.save()
cls.bob = Person.objects.create(name='Bob', person_country=cls.usa)
cls.jim = Person.objects.create(name='Jim', person_country=cls.usa)
cls.george = Person.objects.create(name='George', person_country=cls.usa)