From d10f48d5d5ba145a75b845ed94349839a5d5c0a1 Mon Sep 17 00:00:00 2001 From: Cameron Koegel <53310569+ckoegel@users.noreply.github.com> Date: Fri, 3 Apr 2026 14:51:33 -0400 Subject: [PATCH 1/2] SWI-10392 Update phone_number_lookup_api_spec.rb --- spec/smoke/phone_number_lookup_api_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/smoke/phone_number_lookup_api_spec.rb b/spec/smoke/phone_number_lookup_api_spec.rb index ad545b9..c58c75f 100644 --- a/spec/smoke/phone_number_lookup_api_spec.rb +++ b/spec/smoke/phone_number_lookup_api_spec.rb @@ -38,7 +38,7 @@ expect(create_data.errors).to be_instance_of(Array) request_id = create_data.data.request_id - sleep(30) + sleep(60) get_data, get_status_code = @api_instance.get_async_bulk_lookup_with_http_info(BW_ACCOUNT_ID, request_id) expect(get_status_code).to equal_to(200) From 220f0b8cbb5e680e24d7ac237ed2b51c52f2df43 Mon Sep 17 00:00:00 2001 From: Cameron Koegel <53310569+ckoegel@users.noreply.github.com> Date: Fri, 3 Apr 2026 15:05:23 -0400 Subject: [PATCH 2/2] remove link assertions from GETs --- spec/smoke/phone_number_lookup_api_spec.rb | 8 -------- 1 file changed, 8 deletions(-) diff --git a/spec/smoke/phone_number_lookup_api_spec.rb b/spec/smoke/phone_number_lookup_api_spec.rb index c58c75f..bf87533 100644 --- a/spec/smoke/phone_number_lookup_api_spec.rb +++ b/spec/smoke/phone_number_lookup_api_spec.rb @@ -43,10 +43,6 @@ get_data, get_status_code = @api_instance.get_async_bulk_lookup_with_http_info(BW_ACCOUNT_ID, request_id) expect(get_status_code).to equal_to(200) expect(get_data).to be_instance_of(Bandwidth::GetAsyncBulkLookupResponse) - expect(get_data.links[0]).to be_instance_of(Bandwidth::LinkSchema) - expect(get_data.links[0].rel).to be_instance_of(String) - expect(get_data.links[0].href).to be_instance_of(String) - expect(get_data.links[0].method).to be_instance_of(String) expect(get_data.data.request_id).to eq(request_id) expect(get_data.data.status).to eq(Bandwidth::InProgressLookupStatusEnum::COMPLETE) expect(get_data.data.results).to be_instance_of(Array) @@ -69,10 +65,6 @@ expect(status_code).to equal_to(200) expect(data).to be_instance_of(Bandwidth::CreateSyncLookupResponse) - expect(data.links[0]).to be_instance_of(Bandwidth::LinkSchema) - expect(data.links[0].rel).to be_instance_of(String) - expect(data.links[0].href).to be_instance_of(String) - expect(data.links[0].method).to be_instance_of(String) expect(data.data.request_id).to be_instance_of(String) expect(data.data.status).to eq(Bandwidth::CompletedLookupStatusEnum::COMPLETE) expect(data.data.results).to be_instance_of(Array)