Skip to content

Commit 8376651

Browse files
committed
Minor fixes
1 parent 7188485 commit 8376651

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/L0_check_health_vllm/check_health_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def _assert_model_ready(self, expected_readiness):
9696
model_state = None
9797
for model_index in client.get_model_repository_index().models:
9898
if model_index.name == self._model_name:
99-
assert model_state == None, "duplicate model index found"
99+
assert model_state is None, "duplicate model index found"
100100
model_state = model_index.state == "READY"
101101
assert model_state == expected_readiness
102102

0 commit comments

Comments
 (0)