File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments