Skip to content

Commit

Permalink
Fixed test test_get_specific_schedules_from_storehouse_not_found
Browse files Browse the repository at this point in the history
  • Loading branch information
viniarck committed Jan 12, 2022
1 parent 309f7d1 commit c3b859a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -860,7 +860,7 @@ def test_get_specific_schedules_from_storehouse_not_found(self):

expected = "circuit_id blah not found"
# Assert response not found
self.assertEqual(response.status_code, 400, response.data)
self.assertEqual(response.status_code, 404, response.data)
self.assertEqual(expected, json.loads(response.data)["description"])

def _uni_from_dict_side_effect(self, uni_dict):
Expand Down

0 comments on commit c3b859a

Please sign in to comment.