Skip to content

Commit

Permalink
[HOTBUGFIXING] Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
vgarciabnz committed Sep 26, 2019
1 parent e1fd32d commit 94b5103
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ public void realize_request_with_orgUnit_program_filters_when_included_in_query(

RecordedRequest request = mockWebServer.takeRequest();

assertThat(request.getPath(), containsString("orgUnit=OU&program=P"));
assertThat(request.getPath(), containsString("orgUnit=OU"));
assertThat(request.getPath(), containsString("program=P"));
}

private Callable<List<Event>> givenAEventCallByUIds(int numUIds) {
Expand Down

0 comments on commit 94b5103

Please sign in to comment.