Skip to content

Commit

Permalink
Merge pull request #237 from wazo-platform/test-fix-typo
Browse files Browse the repository at this point in the history
tests: fix typo in name

Reviewed-by: wazo-community-zuul[bot]
  • Loading branch information
wazo-community-zuul[bot] authored Aug 19, 2024
2 parents 7c20be4 + df40ef1 commit e6fe524
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions integration_tests/suite/test_cdr_recording.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def test_get_media_when_file_deleted_on_filesystem(self):
recordings=[{'path': '/tmp/11-recording.wav'}],
)
@file_('/tmp/11-recording.wav', content='11-recording')
def test_get_media_mutli_tenant(self):
def test_get_media_multi_tenant(self):
rec_uuid = self.call_logd.cdr.get_by_id(10)['recordings'][0]['uuid']
assert_that(
calling(self.call_logd.cdr.get_recording_media).with_args(
Expand Down Expand Up @@ -316,7 +316,7 @@ def test_delete_media_when_file_deleted_on_filesystem(self):
recordings=[{'path': '/tmp/11-recording.wav'}],
)
@file_('/tmp/11-recording.wav', content='11-recording')
def test_delete_media_mutli_tenant(self):
def test_delete_media_multi_tenant(self):
rec_uuid = self.call_logd.cdr.get_by_id(10)['recordings'][0]['uuid']
assert_that(
calling(self.call_logd.cdr.delete_recording_media).with_args(
Expand Down Expand Up @@ -484,7 +484,7 @@ def test_delete_media_when_file_deleted_on_filesystem_multi_cdr(self):
)
@file_('/tmp/10-recording.wav', content='10-recording')
@file_('/tmp/11-recording.wav', content='11-recording')
def test_delete_media_mutli_tenant_multi_cdr(self):
def test_delete_media_multi_tenant_multi_cdr(self):
assert_that(
calling(self.call_logd.cdr.delete_cdrs_recording_media).with_args(
[10, 11], tenant_uuid=str(SUB_TENANT)
Expand Down

0 comments on commit e6fe524

Please sign in to comment.