Skip to content

Commit

Permalink
Added assertNotNull in RequestTest.shouldParseQueryStringIntoMap()
Browse files Browse the repository at this point in the history
  • Loading branch information
tfredrich committed May 7, 2012
1 parent dfbc9a6 commit 98f46e9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/java/com/strategicgains/restexpress/RequestTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ public void shouldApplyQueryStringParamsAsHeaders()
public void shouldParseQueryStringIntoMap()
{
Map<String, String> m = request.getQueryStringMap();
assertNotNull(m);
assertEquals("bar", m.get("param1"));
assertEquals("blah", m.get("param2"));
assertEquals("", m.get("yada"));
Expand Down

0 comments on commit 98f46e9

Please sign in to comment.