Revert "vllm unit test, check for exception on error"

This reverts commit 519afdde5f.
This commit is contained in:
Matthew Farrellee 2025-04-27 10:36:54 -04:00
parent 922ac2d501
commit a4c8a849b6

View file

@ -107,8 +107,8 @@ async def test_register_model_checks_vllm(mock_openai_models_list, vllm_inferenc
foo_model = Model(identifier="foo", provider_resource_id="foo", provider_id="vllm-inference")
with pytest.raises(ValueError):
await vllm_inference_adapter.register_model(foo_model)
await vllm_inference_adapter.register_model(foo_model)
mock_openai_models_list.assert_called()
@pytest.mark.asyncio