Skip to content

Commit 4af1623

Browse files
committed
Fixup
1 parent e9f3ba3 commit 4af1623

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

tests/test_job.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,10 @@ def test_submit_job_url_with_success(self, mock_session, make_mock_response):
120120
'delete_after_seconds': 0,
121121
'language': LANGUAGE,
122122
'transcriber': TRANSCRIBER,
123-
'skip_postprocessing': True
123+
'skip_postprocessing': True,
124+
'remove_atmospherics': True,
125+
'speakers_count': 123,
126+
'diarization_type': "premium"
124127
}
125128
response = make_mock_response(url=JOB_ID_URL, json_data=data)
126129
mock_session.request.return_value = response
@@ -295,7 +298,10 @@ def test_submit_job_local_file_with_success(self, mocker, mock_session, make_moc
295298
'delete_after_seconds': 0,
296299
'language': LANGUAGE,
297300
'transcriber': TRANSCRIBER,
298-
'skip_postprocessing': True
301+
'skip_postprocessing': True,
302+
'remove_atmospherics': True,
303+
'speakers_count': 123,
304+
'diarization_type': "premium"
299305
}
300306
response = make_mock_response(url=JOB_ID_URL, json_data=data)
301307
mock_session.request.return_value = response

0 commit comments

Comments
 (0)