diff --git a/tests/integration/test_charm_base_image.py b/tests/integration/test_charm_base_image.py index 711771c10..0243b5cee 100644 --- a/tests/integration/test_charm_base_image.py +++ b/tests/integration/test_charm_base_image.py @@ -54,4 +54,4 @@ async def test_runner_base_image( ) workflow_run: WorkflowRun = workflow.get_runs()[0] - assert workflow_run.status == "success" + assert workflow_run.status == "completed" diff --git a/tests/integration/test_openstack_base_image.py b/tests/integration/test_openstack_base_image.py index 82418f3bf..cabb9f8ce 100644 --- a/tests/integration/test_openstack_base_image.py +++ b/tests/integration/test_openstack_base_image.py @@ -45,7 +45,7 @@ async def test_noble_base_image( ) # 1. the workflow run completes successfully. workflow_run: WorkflowRun = workflow.get_runs()[0] - assert workflow_run.status == "success" + assert workflow_run.status == "completed" # 2. when the servers are listed. servers = openstack_connection.list_servers(detailed=True)