From f41c08f53e21bfe20d827b9d521e05fa24e7926d Mon Sep 17 00:00:00 2001 From: Carl Csaposs Date: Wed, 23 Aug 2023 18:38:24 +0000 Subject: [PATCH] fix wait_for_idle call --- tests/integration/test_tls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_tls.py b/tests/integration/test_tls.py index b11f1551..2d27ebb8 100644 --- a/tests/integration/test_tls.py +++ b/tests/integration/test_tls.py @@ -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)