diff options
author | Matthew Lemon <y@yulqen.org> | 2024-10-14 16:44:20 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-10-14 16:44:20 +0100 |
commit | 95507940f12a0a62e2e207b02cecfca2c3c69418 (patch) | |
tree | 3b642216a95c63d9f4afd1eb948fee75879348a9 | |
parent | cb9f0fad4140c9cfff63f056f88da1b8bdb2f9cc (diff) |
quick removal of unneeded variable assignment
-rw-r--r-- | instruments/tests/test_models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/instruments/tests/test_models.py b/instruments/tests/test_models.py index 4bf05f8..9b82629 100644 --- a/instruments/tests/test_models.py +++ b/instruments/tests/test_models.py @@ -17,7 +17,7 @@ def test_data(): def test_sop(): user = TeamUser.objects.create_user(email="ming@mingy.com") - sop = SOP.objects.create( + SOP.objects.create( name="SOP 1", designation="SOP1", sp_link="https://example.com", |