Skip to content

Commit

Permalink
Setting vars
Browse files Browse the repository at this point in the history
  • Loading branch information
brianluisgomez committed Oct 31, 2023
1 parent 3265bb4 commit faf3fbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/com/bandwidth/sdk/api/CallsApiTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ public void getCalls() throws ApiException {
Basic.setUsername(BW_USERNAME);
Basic.setPassword(BW_PASSWORD);

ApiResponse<List<CallState>> response = api.listCallsWithHttpInfo(BW_ACCOUNT_ID, USER_NUMBER, BW_NUMBER);
ApiResponse<List<CallState>> response = api.listCallsWithHttpInfo(BW_ACCOUNT_ID, USER_NUMBER, BW_NUMBER, null, null, null, null, null);

assertThat(response.getStatusCode(), is(200));
assertThat(response.getData(), hasProperty("callId", is(instanceOf(String.class))));
Expand Down

0 comments on commit faf3fbd

Please sign in to comment.