Skip to content

Commit

Permalink
Adjusts test now that reprodata is guaranteed to be {} and not None.
Browse files Browse the repository at this point in the history
  • Loading branch information
pritchardn committed Jun 29, 2022
1 parent 48ced33 commit 70ae723
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion daliuge-engine/test/manager/test_rest.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def test_reprodata_get(self):
self.assertEqual(
{"a": {"oid": "a", "storage": "Memory", "type": "plain"}}, response["graph"]
)
self.assertIsNone(response["reprodata"])
self.assertEqual({}, response["reprodata"])

def test_reprostatus_get(self):
# Test with reprodata
Expand Down

0 comments on commit 70ae723

Please sign in to comment.