diff options
author | nico <nico@magicbroccoli.de> | 2019-12-19 18:15:47 +0100 |
---|---|---|
committer | nico <nico@magicbroccoli.de> | 2019-12-19 18:15:47 +0100 |
commit | 9b964690e79b5a4366e43fde01c6594de693be4d (patch) | |
tree | 72dd4c1ee364a44d6aedde66a798af239b3be44a /tests/test_group_assign.py | |
parent | 6f19f160ef0d2d72c1db35abcf03ee28a3982d7c (diff) |
package finish up
* update setup.py
* better format the main __init__ file
* move exceptions to separate file for maintainability
* small corrections
Diffstat (limited to 'tests/test_group_assign.py')
-rw-r--r-- | tests/test_group_assign.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_group_assign.py b/tests/test_group_assign.py index c3529a0..150aa7b 100644 --- a/tests/test_group_assign.py +++ b/tests/test_group_assign.py @@ -32,7 +32,7 @@ class TestGroupAssigner: duration = dt.timedelta() with pytest.raises(DateException): - GroupAssigner(date=startdate, delta=duration,**creds).start() + GroupAssigner(date=startdate, delta=duration, **creds).start() def test_datecheck_enddate(self): # this should produce a exit code 0 SystemExit as the end date is in the past @@ -42,7 +42,7 @@ class TestGroupAssigner: duration = dt.timedelta() with pytest.raises(SystemExit): - GroupAssigner(date=startdate, delta=duration,**creds).start() + GroupAssigner(date=startdate, delta=duration, **creds).start() def test_connect_noconnection(self): # connect should fail with ConnectionRefusedError @@ -52,4 +52,4 @@ class TestGroupAssigner: duration = dt.timedelta() with pytest.raises(ConnectionRefusedError): - GroupAssigner(date=startdate, delta=duration,**creds).start() + GroupAssigner(date=startdate, delta=duration, **creds).start() |