aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/organisations/tests/test_models.py
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2020-01-20 20:55:17 +0000
committerMatthew Lemon <lemon@matthewlemon.com>2020-01-20 20:55:17 +0000
commit6d6b1cd9c405c54cc78dc2b7cbe217ba526a9829 (patch)
treedb18b384b1e704991a7b531aa95c759aaf465a83 /ctrack/organisations/tests/test_models.py
parent793d16fbc7d531c575601a64be91f7ac8250aab0 (diff)
partial way through playing with Faker
Diffstat (limited to 'ctrack/organisations/tests/test_models.py')
-rw-r--r--ctrack/organisations/tests/test_models.py5
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")