Skip to content

Commit f228526

Browse files
authored
Fix failing test (#279)
1 parent 4b4b5ba commit f228526

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/integration/client/orkes/test_orkes_clients.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,7 @@ def __test_workflow_execution_lifecycle(self):
520520
workflow = self.workflow_client.get_workflow(workflow_uuid, False)
521521
except ApiException as e:
522522
assert e.code == 404
523-
assert e.message == "Workflow with Id: {} not found.".format(workflow_uuid)
523+
assert str(e.message).lower() == "workflow with id: {} not found.".format(workflow_uuid)
524524

525525
def __test_task_execution_lifecycle(self):
526526

0 commit comments

Comments
 (0)