Skip to content

Commit

Permalink
fix: dependency charm channels in integration tests (#233)
Browse files Browse the repository at this point in the history
  • Loading branch information
NohaIhab authored Mar 15, 2024
1 parent bd90d58 commit 17910f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/test_charm.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ async def test_can_create_experiment_with_mlflow_library(self, ops_test: OpsTest
async def test_deploy_resource_dispatcher(self, ops_test: OpsTest):
await ops_test.model.deploy(
entity_url=METACONTROLLER_CHARM_NAME,
channel="latest/edge",
channel="3.0/stable",
trust=True,
)
await ops_test.model.wait_for_idle(
Expand All @@ -310,7 +310,7 @@ async def test_deploy_resource_dispatcher(self, ops_test: OpsTest):
timeout=120,
)
await ops_test.model.deploy(
RESOURCE_DISPATCHER_CHARM_NAME, channel="latest/edge", trust=True
RESOURCE_DISPATCHER_CHARM_NAME, channel="1.0/stable", trust=True
)
await ops_test.model.wait_for_idle(
apps=[CHARM_NAME],
Expand Down

0 comments on commit 17910f9

Please sign in to comment.