(self, client: OpenAI)
| 217 | |
| 218 | @parametrize |
| 219 | def test_path_params_update(self, client: OpenAI) -> None: |
| 220 | with pytest.raises(ValueError, match=r"Expected a non-empty value for `eval_id` but received ''"): |
| 221 | client.evals.with_raw_response.update( |
| 222 | eval_id="", |
| 223 | ) |
| 224 | |
| 225 | @parametrize |
| 226 | def test_method_list(self, client: OpenAI) -> None: |