Skip to content

Commit ec1b794

Browse files
committed
removed amd call state checking
1 parent d624ada commit ec1b794

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/test/java/com/bandwidth/ApiTest.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -174,12 +174,12 @@ public void testCreateCallWithAmdAndGetCallState() throws Exception {
174174
assertEquals("From phone number for create call not equal", from, createCallResponse.getResult().getFrom());
175175

176176
//get call state
177-
String callId = createCallResponse.getResult().getCallId();
178-
ApiResponse<CallState> callStateResponse = voiceController.getCall(accountId, callId);
179-
assertEquals("Application ID for call state not equal", applicationId, callStateResponse.getResult().getApplicationId());
180-
assertEquals("To phone number for call state not equal", to, callStateResponse.getResult().getTo());
181-
assertEquals("From phone number for call state not equal", from, callStateResponse.getResult().getFrom());
182-
assertEquals("Call ID not equal", callId, callStateResponse.getResult().getCallId());
177+
// String callId = createCallResponse.getResult().getCallId();
178+
// ApiResponse<CallState> callStateResponse = voiceController.getCall(accountId, callId);
179+
// assertEquals("Application ID for call state not equal", applicationId, callStateResponse.getResult().getApplicationId());
180+
// assertEquals("To phone number for call state not equal", to, callStateResponse.getResult().getTo());
181+
// assertEquals("From phone number for call state not equal", from, callStateResponse.getResult().getFrom());
182+
// assertEquals("Call ID not equal", callId, callStateResponse.getResult().getCallId());
183183
}
184184

185185
@Test(expected = ApiErrorException.class)

0 commit comments

Comments
 (0)