Skip to content

Commit

Permalink
fix: server image name
Browse files Browse the repository at this point in the history
  • Loading branch information
yanksyoon committed Apr 11, 2024
1 parent c95c53c commit 4a40879
Showing 1 changed file with 1 addition and 1 deletion.
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 @@ -41,7 +41,7 @@ async def test_noble_base_image(
servers = openstack_connection.list_servers(detailed=True)
assert len(servers) == 1, f"Unexpected number of servers: {len(servers)}"
server: Server = servers[0]
assert "noble" in server.image.name
assert "noble" in openstack_connection.get_image(server.image.id).name

# Workflow completes successfully
workflow = await dispatch_workflow(
Expand Down

0 comments on commit 4a40879

Please sign in to comment.