Skip to content

Commit

Permalink
Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillatrev committed Jun 17, 2024
1 parent e9f3ba3 commit 4af1623
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions tests/test_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,10 @@ def test_submit_job_url_with_success(self, mock_session, make_mock_response):
'delete_after_seconds': 0,
'language': LANGUAGE,
'transcriber': TRANSCRIBER,
'skip_postprocessing': True
'skip_postprocessing': True,
'remove_atmospherics': True,
'speakers_count': 123,
'diarization_type': "premium"
}
response = make_mock_response(url=JOB_ID_URL, json_data=data)
mock_session.request.return_value = response
Expand Down Expand Up @@ -295,7 +298,10 @@ def test_submit_job_local_file_with_success(self, mocker, mock_session, make_moc
'delete_after_seconds': 0,
'language': LANGUAGE,
'transcriber': TRANSCRIBER,
'skip_postprocessing': True
'skip_postprocessing': True,
'remove_atmospherics': True,
'speakers_count': 123,
'diarization_type': "premium"
}
response = make_mock_response(url=JOB_ID_URL, json_data=data)
mock_session.request.return_value = response
Expand Down

0 comments on commit 4af1623

Please sign in to comment.