From 87aefbb6c18fc086a43398fa21d202d2714cace6 Mon Sep 17 00:00:00 2001 From: klemen1999 Date: Mon, 9 Mar 2026 14:04:01 +0100 Subject: [PATCH] Updated tests to latest oakctl --- tests/test_examples_standalone.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_examples_standalone.py b/tests/test_examples_standalone.py index 55e66b11f..1bf6aad30 100644 --- a/tests/test_examples_standalone.py +++ b/tests/test_examples_standalone.py @@ -326,7 +326,7 @@ def get_app_status(app_id: str, args: Dict): ) apps = json.loads(result.stdout) for app in apps: - if app["container_id"] == app_id: + if app.get("container_id") == app_id or app.get("app_id") == app_id: return app["status"] return None # App not found except Exception as e: