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

@ -7,8 +7,7 @@ class PropertyTests(TestCase):
@classmethod
def setUpTestData(cls):
cls.a = Person(first_name='John', last_name='Lennon')
cls.a.save()
cls.a = Person.objects.create(first_name='John', last_name='Lennon')
def test_getter(self):
self.assertEqual(self.a.full_name, 'John Lennon')