Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -505,6 +505,7 @@ public void searchEventsMaximumParamsTest() throws ApiException {
SearchEventsIncrementalIdentificationStatus.PARTIALLY_COMPLETED;
final Boolean SIMULATOR = true;
final List<SearchEventsSource> SOURCE = Arrays.asList(SearchEventsSource.EDGE);
final Boolean ACTIVE_CALL = true;

Map<String, String> expectedQueryParams = new HashMap<>();
expectedQueryParams.put("limit", String.valueOf(LIMIT));
Expand Down Expand Up @@ -550,6 +551,7 @@ public void searchEventsMaximumParamsTest() throws ApiException {
expectedQueryParams.put(
"incremental_identification_status", String.valueOf(INCREMENTAL_IDENTIFICATION_STATUS));
expectedQueryParams.put("simulator", String.valueOf(SIMULATOR));
expectedQueryParams.put("active_call", String.valueOf(ACTIVE_CALL));

final int arrayQueryParamsCount =
ENVIRONMENT.size()
Expand Down Expand Up @@ -634,7 +636,8 @@ public void searchEventsMaximumParamsTest() throws ApiException {
.setHighRecallId(HIGH_RECALL_ID)
.setIncrementalIdentificationStatus(INCREMENTAL_IDENTIFICATION_STATUS)
.setSimulator(SIMULATOR)
.setSource(SOURCE));
.setSource(SOURCE)
.setActiveCall(ACTIVE_CALL));
List<Event> events = response.getEvents();
assertEquals(events.size(), 1);
}
Expand Down
Loading