Skip to content

Commit 1aeb6ea

Browse files
authored
SWI-10072 Fix TN Lookup Smoke Test (#235)
* SWI-10072 Fix TN Lookup Smoke Test * delete the right thing * AND DELETE THE ONE I ALREADY REMOVED
1 parent b6438e4 commit 1aeb6ea

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/test/java/com/bandwidth/sdk/smoke/PhoneNumberLookupApiTest.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ public void createSyncLookupTest() throws ApiException {
5656
LookupResult firstResult = lookupResponse.getData().getResults().get(0);
5757
assertThat(firstResult.getPhoneNumber(), instanceOf(String.class));
5858
assertThat(firstResult.getLineType(), instanceOf(LineTypeEnum.class));
59-
assertThat(firstResult.getMessagingProvider(), instanceOf(String.class));
6059
assertThat(firstResult.getVoiceProvider(), instanceOf(String.class));
6160
assertThat(firstResult.getCountryCodeA3(), instanceOf(String.class));
6261
}
@@ -93,7 +92,6 @@ public void createGetAsyncLookupTest() throws ApiException, InterruptedException
9392
LookupResult firstResult = lookupResponse.getData().getResults().get(0);
9493
assertThat(firstResult.getPhoneNumber(), instanceOf(String.class));
9594
assertThat(firstResult.getLineType(), instanceOf(LineTypeEnum.class));
96-
assertThat(firstResult.getMessagingProvider(), instanceOf(String.class));
9795
assertThat(firstResult.getVoiceProvider(), instanceOf(String.class));
9896
assertThat(firstResult.getCountryCodeA3(), instanceOf(String.class));
9997
}

0 commit comments

Comments
 (0)