Skip to content

Commit 5c0919c

Browse files
chore: improve example values
1 parent 75d2397 commit 5c0919c

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

tests/api_resources/test_voices.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -77,14 +77,14 @@ def test_streaming_response_create(self, client: Lmnt) -> None:
7777
@parametrize
7878
def test_method_retrieve(self, client: Lmnt) -> None:
7979
voice = client.voices.retrieve(
80-
"id",
80+
"123",
8181
)
8282
assert_matches_type(Voice, voice, path=["response"])
8383

8484
@parametrize
8585
def test_raw_response_retrieve(self, client: Lmnt) -> None:
8686
response = client.voices.with_raw_response.retrieve(
87-
"id",
87+
"123",
8888
)
8989

9090
assert response.is_closed is True
@@ -95,7 +95,7 @@ def test_raw_response_retrieve(self, client: Lmnt) -> None:
9595
@parametrize
9696
def test_streaming_response_retrieve(self, client: Lmnt) -> None:
9797
with client.voices.with_streaming_response.retrieve(
98-
"id",
98+
"123",
9999
) as response:
100100
assert not response.is_closed
101101
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
@@ -197,14 +197,14 @@ def test_streaming_response_list(self, client: Lmnt) -> None:
197197
@parametrize
198198
def test_method_delete(self, client: Lmnt) -> None:
199199
voice = client.voices.delete(
200-
"id",
200+
"123",
201201
)
202202
assert_matches_type(VoiceDeleteResponse, voice, path=["response"])
203203

204204
@parametrize
205205
def test_raw_response_delete(self, client: Lmnt) -> None:
206206
response = client.voices.with_raw_response.delete(
207-
"id",
207+
"123",
208208
)
209209

210210
assert response.is_closed is True
@@ -215,7 +215,7 @@ def test_raw_response_delete(self, client: Lmnt) -> None:
215215
@parametrize
216216
def test_streaming_response_delete(self, client: Lmnt) -> None:
217217
with client.voices.with_streaming_response.delete(
218-
"id",
218+
"123",
219219
) as response:
220220
assert not response.is_closed
221221
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
@@ -293,14 +293,14 @@ async def test_streaming_response_create(self, async_client: AsyncLmnt) -> None:
293293
@parametrize
294294
async def test_method_retrieve(self, async_client: AsyncLmnt) -> None:
295295
voice = await async_client.voices.retrieve(
296-
"id",
296+
"123",
297297
)
298298
assert_matches_type(Voice, voice, path=["response"])
299299

300300
@parametrize
301301
async def test_raw_response_retrieve(self, async_client: AsyncLmnt) -> None:
302302
response = await async_client.voices.with_raw_response.retrieve(
303-
"id",
303+
"123",
304304
)
305305

306306
assert response.is_closed is True
@@ -311,7 +311,7 @@ async def test_raw_response_retrieve(self, async_client: AsyncLmnt) -> None:
311311
@parametrize
312312
async def test_streaming_response_retrieve(self, async_client: AsyncLmnt) -> None:
313313
async with async_client.voices.with_streaming_response.retrieve(
314-
"id",
314+
"123",
315315
) as response:
316316
assert not response.is_closed
317317
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
@@ -413,14 +413,14 @@ async def test_streaming_response_list(self, async_client: AsyncLmnt) -> None:
413413
@parametrize
414414
async def test_method_delete(self, async_client: AsyncLmnt) -> None:
415415
voice = await async_client.voices.delete(
416-
"id",
416+
"123",
417417
)
418418
assert_matches_type(VoiceDeleteResponse, voice, path=["response"])
419419

420420
@parametrize
421421
async def test_raw_response_delete(self, async_client: AsyncLmnt) -> None:
422422
response = await async_client.voices.with_raw_response.delete(
423-
"id",
423+
"123",
424424
)
425425

426426
assert response.is_closed is True
@@ -431,7 +431,7 @@ async def test_raw_response_delete(self, async_client: AsyncLmnt) -> None:
431431
@parametrize
432432
async def test_streaming_response_delete(self, async_client: AsyncLmnt) -> None:
433433
async with async_client.voices.with_streaming_response.delete(
434-
"id",
434+
"123",
435435
) as response:
436436
assert not response.is_closed
437437
assert response.http_request.headers.get("X-Stainless-Lang") == "python"

0 commit comments

Comments
 (0)