Skip to content

Commit

Permalink
fix wait_for_idle call
Browse files Browse the repository at this point in the history
  • Loading branch information
carlcsaposs-canonical committed Aug 23, 2023
1 parent 56e629c commit f41c08f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/test_tls.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ async def test_build_deploy_and_relate(ops_test: OpsTest, mysql_router_charm_ser
logger.info("Waiting for applications to become active")
# We can safely wait only for test application to be ready, given that it will
# only become active once all the other applications are ready.
await ops_test.model.wait_for_idle(TEST_APP_NAME, status="active", timeout=15 * 60)
await ops_test.model.wait_for_idle([TEST_APP_NAME], status="active", timeout=15 * 60)


@pytest.mark.group(1)
Expand Down

0 comments on commit f41c08f

Please sign in to comment.