diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-01-20 20:55:17 +0000 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-01-20 20:55:17 +0000 |
commit | 6d6b1cd9c405c54cc78dc2b7cbe217ba526a9829 (patch) | |
tree | db18b384b1e704991a7b531aa95c759aaf465a83 /ctrack/organisations/tests/test_models.py | |
parent | 793d16fbc7d531c575601a64be91f7ac8250aab0 (diff) |
partial way through playing with Faker
Diffstat (limited to 'ctrack/organisations/tests/test_models.py')
-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") |