diff --git a/testsuite/gateway/gateway_api/route.py b/testsuite/gateway/gateway_api/route.py index ddb02434..8fde4c4f 100644 --- a/testsuite/gateway/gateway_api/route.py +++ b/testsuite/gateway/gateway_api/route.py @@ -131,7 +131,7 @@ def _ready(obj): condition_set.controllerName in expected_controllers or "gateway-controller" in condition_set.controllerName # fallback ): - return (all(x.status == "True" for x in condition_set.conditions),) + return all(x.status == "True" for x in condition_set.conditions) return False success = self.wait_until(_ready, timelimit=10)