Skip to content

Commit

Permalink
Test fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamBien committed Oct 20, 2015
1 parent 568a82b commit 33b1ded
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/test/java/loadr/AppTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,10 @@ public void extractPostAndHookArgument() {
assertThat(argumentMap.size(), is(2));
assertTrue(argumentMap.containsKey(post));
assertTrue(argumentMap.containsKey(hook));
assertTrue(argumentMap.containsKey(uri));
assertTrue(argumentMap.containsValue(uri));
assertTrue(argumentMap.get(post).isEmpty());
assertThat(argumentMap.get(hook), is(uri));
final String actualUri = argumentMap.get(hook);
assertThat(actualUri, is(uri));
}

@Test
Expand Down

0 comments on commit 33b1ded

Please sign in to comment.