(self, client: OpenAI)
| 418 | |
| 419 | @parametrize |
| 420 | def test_path_params_remix(self, client: OpenAI) -> None: |
| 421 | with pytest.raises(ValueError, match=r"Expected a non-empty value for `video_id` but received ''"): |
| 422 | client.videos.with_raw_response.remix( |
| 423 | video_id="", |
| 424 | prompt="x", |
| 425 | ) |
| 426 | |
| 427 | |
| 428 | class TestAsyncVideos: |