We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b4b5ba commit f228526Copy full SHA for f228526
1 file changed
tests/integration/client/orkes/test_orkes_clients.py
@@ -520,7 +520,7 @@ def __test_workflow_execution_lifecycle(self):
520
workflow = self.workflow_client.get_workflow(workflow_uuid, False)
521
except ApiException as e:
522
assert e.code == 404
523
- assert e.message == "Workflow with Id: {} not found.".format(workflow_uuid)
+ assert str(e.message).lower() == "workflow with id: {} not found.".format(workflow_uuid)
524
525
def __test_task_execution_lifecycle(self):
526
0 commit comments