Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kthui committed Nov 26, 2024
1 parent 7188485 commit 8376651
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/L0_check_health_vllm/check_health_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def _assert_model_ready(self, expected_readiness):
model_state = None
for model_index in client.get_model_repository_index().models:
if model_index.name == self._model_name:
assert model_state == None, "duplicate model index found"
assert model_state is None, "duplicate model index found"
model_state = model_index.state == "READY"
assert model_state == expected_readiness

Expand Down

0 comments on commit 8376651

Please sign in to comment.