Skip to content

Commit

Permalink
Pass in series to landscape subordinate charm test
Browse files Browse the repository at this point in the history
  • Loading branch information
shayancanonical committed Aug 22, 2024
1 parent c2eee31 commit 653b88c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/integration/test_subordinate_charms.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ async def test_ubuntu_pro(ops_test, mysql_router_charm_series, github_secrets):


@pytest.mark.group(1)
async def test_landscape_client(ops_test, github_secrets):
async def test_landscape_client(ops_test, github_secrets, mysql_router_charm_series):
await ops_test.model.deploy(
LANDSCAPE_CLIENT_APP_NAME,
application_name=LANDSCAPE_CLIENT_APP_NAME,
Expand All @@ -78,6 +78,7 @@ async def test_landscape_client(ops_test, github_secrets):
"registration-key": github_secrets["LANDSCAPE_REGISTRATION_KEY"],
"ppa": "ppa:landscape/self-hosted-beta",
},
series=mysql_router_charm_series,
)
await ops_test.model.relate(APPLICATION_APP_NAME, LANDSCAPE_CLIENT_APP_NAME)
async with ops_test.fast_forward("60s"):
Expand Down

0 comments on commit 653b88c

Please sign in to comment.