Skip to content

Commit cdb4610

Browse files
committed
Fixing linting issues.
1 parent 5dc4299 commit cdb4610

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/e2e/utils/cluster.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -386,10 +386,10 @@ def pod_has_containers_ready():
386386
tool_calling_enabled = "tool_calling" in ols_config_suffix
387387

388388
if disconnected:
389-
return ready_containers == 1
390-
elif tool_calling_enabled:
389+
return ready_containers >= 1
390+
if tool_calling_enabled:
391391
return ready_containers >= 2
392-
return ready_containers == 2
392+
return ready_containers >= 2
393393

394394
# wait for the containers in the server pod to become ready
395395
# two containers normally, three in case we're running mcp server

0 commit comments

Comments
 (0)