(self, client: OpenAI)
| 111 | |
| 112 | @parametrize |
| 113 | def test_method_complete(self, client: OpenAI) -> None: |
| 114 | upload = client.uploads.complete( |
| 115 | upload_id="upload_abc123", |
| 116 | part_ids=["string"], |
| 117 | ) |
| 118 | assert_matches_type(Upload, upload, path=["response"]) |
| 119 | |
| 120 | @parametrize |
| 121 | def test_method_complete_with_all_params(self, client: OpenAI) -> None: |
nothing calls this directly
no test coverage detected