Skip to content

Commit

Permalink
workflow status assertion fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yanksyoon committed Apr 11, 2024
1 parent f193850 commit 539b522
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/integration/test_charm_base_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion tests/integration/test_openstack_base_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 539b522

Please sign in to comment.