Skip to content

Commit

Permalink
fix failing tests, should ran them before; seems they were checking f…
Browse files Browse the repository at this point in the history
…or incorrect number of parameters, regardless(?) the previous Enumeration -> List change
  • Loading branch information
juanpablo-santos committed Aug 16, 2017
1 parent 5c74d73 commit 10d8f40
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,11 @@ public void testHeadersAndRequestParameters() throws Exception {
assertThat(variables) //
.containsEntry("someparam", "some value") //
.containsEntry("someparam_0", "some value") //
.containsEntry("anotherparam_1", "eee") //
.containsEntry("anotherparam", "ee") //
.containsEntry("anotherparam_0", "ee") //
.containsEntry("anotherparam_1", "eee") //
.containsEntry("content_type", "application/json") //
.hasSize(6);
.hasSize(7);
}

@Test
Expand Down Expand Up @@ -86,10 +87,11 @@ public void testHeaders() throws Exception {
assertThat(variables) //
.containsEntry("someparam", "some value") //
.containsEntry("someparam_0", "some value") //
.containsEntry("anotherparam_1", "eee") //
.containsEntry("anotherparam", "ee") //
.containsEntry("anotherparam_0", "ee") //
.containsEntry("anotherparam_1", "eee") //
.containsEntry("content_type", "application/json") //
.hasSize(6);
.hasSize(7);
}

@Test
Expand Down

0 comments on commit 10d8f40

Please sign in to comment.