Skip to content

Commit

Permalink
Fix AssertionError constructor by jdk 1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
roundrop committed Jul 6, 2015
1 parent 35b2ba4 commit 8262300
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public static Matcher<HttpParameter[]> hasPostJsonParameter(final String name, f
try {
expectedJsonObject = new JSONObject(expectedJsonObjectSource);
} catch (JSONException ex) {
throw new AssertionError("failed to parse object source: " + expectedJsonObjectSource, ex);
throw new AssertionError("failed to parse object source: " + expectedJsonObjectSource);
}
return hasPostJsonParameter(name, expectedJsonObject);
}
Expand Down

0 comments on commit 8262300

Please sign in to comment.