Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ckoegel committed Jul 31, 2024
1 parent d1a7d58 commit c41b753
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions test/smoke/test_transcriptions_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ def list_real_time_transcriptions(self) -> None:
assert_that(response.data[0], instance_of(CallTranscriptionMetadata))
assert_that(response.data[0].transcription_id, instance_of(str))
assert_that(response.data[0].transcription_url, instance_of(str))
assert_that(response.data[0].transcription_name, instance_of(str))

self.transcription_id = response.data[0].transcription_id

Expand Down
1 change: 1 addition & 0 deletions test/unit/api/test_transcriptions_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ def test_list_real_time_transcriptions(self) -> None:
assert_that(response.data[0], instance_of(CallTranscriptionMetadata))
assert_that(response.data[0].transcription_id, instance_of(str))
assert_that(response.data[0].transcription_url, instance_of(str))
assert_that(response.data[0].transcription_name, instance_of(str))

def test_get_real_time_transcription(self) -> None:
"""Test case for get_real_time_transcription
Expand Down

0 comments on commit c41b753

Please sign in to comment.