diff --git a/test/smoke/test_phone_number_lookup_api.py b/test/smoke/test_phone_number_lookup_api.py index 56d3454f..0f4ca11c 100644 --- a/test/smoke/test_phone_number_lookup_api.py +++ b/test/smoke/test_phone_number_lookup_api.py @@ -74,7 +74,7 @@ def test_create_get_async_bulk_lookup(self) -> None: assert_that(response.data.errors, instance_of(list)) request_id = response.data.data.request_id - sleep(30) + sleep(60) response = self.api.get_async_bulk_lookup_with_http_info(BW_ACCOUNT_ID, request_id) assert_that(response, is_not(none())) @@ -82,10 +82,6 @@ def test_create_get_async_bulk_lookup(self) -> None: assert_that(response.data, is_not(none())) assert_that(response.data, instance_of(GetAsyncBulkLookupResponse)) assert_that(response.data.links, is_not(none())) - assert_that(response.data.links[0], instance_of(LinkSchema)) - assert_that(response.data.links[0].rel, instance_of(str)) - assert_that(response.data.links[0].href, instance_of(str)) - assert_that(response.data.links[0].method, instance_of(str)) assert_that(response.data.data, is_not(none())) assert_that(response.data.data.request_id, equal_to(request_id)) assert_that(response.data.data.status, instance_of(InProgressLookupStatusEnum)) @@ -110,10 +106,6 @@ def test_create_sync_lookup(self) -> None: assert_that(response.data, is_not(none())) assert_that(response.data, instance_of(CreateSyncLookupResponse)) assert_that(response.data.links, is_not(none())) - assert_that(response.data.links[0], instance_of(LinkSchema)) - assert_that(response.data.links[0].rel, instance_of(str)) - assert_that(response.data.links[0].href, instance_of(str)) - assert_that(response.data.links[0].method, instance_of(str)) assert_that(response.data.data, is_not(none())) assert_that(response.data.data.request_id, instance_of(UUID)) assert_that(response.data.data.status, instance_of(CompletedLookupStatusEnum))