Skip to content

Commit

Permalink
fix unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
ckoegel committed Aug 6, 2024
1 parent 0ad0c11 commit 7a93a6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/api/test_recordings_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def test_get_call_recording(self) -> None:
assert_that(response.data.transcription.status, instance_of(str))
assert_that(response.data.transcription.completed_time, instance_of(datetime))
assert_that(response.data.transcription.url, starts_with('http'))
assert_that(response.data[0].recording_name, instance_of(str))
assert_that(response.data.recording_name, instance_of(str))

def test_download_call_recording(self) -> None:
"""Test case for download_call_recording
Expand Down

0 comments on commit 7a93a6b

Please sign in to comment.