Skip to content

Commit 5460931

Browse files
committed
style: fix transcribe method formatting in async ASR client tests
1 parent 584a285 commit 5460931

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

tests/unit/test_asr.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -177,9 +177,7 @@ async def test_transcribe_without_timestamps(
177177
mock_response.json.return_value = sample_asr_response
178178
async_mock_client_wrapper.request = AsyncMock(return_value=mock_response)
179179

180-
await async_asr_client.transcribe(
181-
audio=b"fake_audio", include_timestamps=False
182-
)
180+
await async_asr_client.transcribe(audio=b"fake_audio", include_timestamps=False)
183181

184182
call_args = async_mock_client_wrapper.request.call_args
185183
payload = ormsgpack.unpackb(call_args[1]["content"])
@@ -200,4 +198,4 @@ async def test_transcribe_with_request_options(
200198
)
201199

202200
call_args = async_mock_client_wrapper.request.call_args
203-
assert call_args[1]["request_options"] == request_options
201+
assert call_args[1]["request_options"] == request_options

0 commit comments

Comments
 (0)