From 0f0ff27c16d7a551243021b18d07284c13d3de8f Mon Sep 17 00:00:00 2001 From: charlie4284 Date: Mon, 29 Apr 2024 23:47:16 +0800 Subject: [PATCH] remove wait for active --- tests/integration/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/conftest.py b/tests/integration/conftest.py index 7ef145a..e27f786 100644 --- a/tests/integration/conftest.py +++ b/tests/integration/conftest.py @@ -104,7 +104,7 @@ async def nginx_integrator_app(ops_test: OpsTest): """Deploy nginx-ingress-integrator charm.""" nginx_integrator_app_name = "nginx-ingress-integrator" nginx_integrator_app = await ops_test.model.deploy(nginx_integrator_app_name, trust=True) - await ops_test.model.wait_for_idle(apps=[nginx_integrator_app.name], wait_for_active=True) + await ops_test.model.wait_for_idle(apps=[nginx_integrator_app.name]) return nginx_integrator_app