Skip to content

Commit

Permalink
Fixes assertRaises call in test_dm.py
Browse files Browse the repository at this point in the history
  • Loading branch information
pritchardn committed Jan 10, 2022
1 parent 2a2b6f1 commit e401a41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daliuge-engine/test/manager/test_dm.py
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ def test_run_invalid_shmem_graph(self):
dm = self._start_dm()
sessionID = "s1"
if sys.version_info < (3, 8):
self.assertRaises(NotImplementedError, quickDeploy(dm, sessionID, graph))
self.assertRaises(NotImplementedError, quickDeploy, dm, sessionID, graph)
else:
quickDeploy(dm, sessionID, graph)
self.assertEqual(1, len(dm._sessions[sessionID].drops))
Expand Down

0 comments on commit e401a41

Please sign in to comment.