diff options
Diffstat (limited to 'ctrack/organisations')
-rw-r--r-- | ctrack/organisations/tests/test_models.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/ctrack/organisations/tests/test_models.py b/ctrack/organisations/tests/test_models.py index f642c11..b178508 100644 --- a/ctrack/organisations/tests/test_models.py +++ b/ctrack/organisations/tests/test_models.py @@ -12,8 +12,5 @@ def test_organisation_get_absolute_url(org: Organisation): def test_create_organisation(addr: Address): - Organisation( - name="Big Bad OES Corporation", - address = addr - ).save() + Organisation(name="Big Bad OES Corporation", address=addr).save() assert Organisation.objects.get(name="Big Bad OES Corporation") |