Fix missing space in assertion message

This commit is contained in:
Esko Luontola 2015-05-19 22:09:37 +03:00 committed by Rossen Stoyanchev
parent 4297612e4c
commit 89c1674b89
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ public class JsonPathExpectationsHelper {
@SuppressWarnings("unchecked")
public <T> void assertValue(String content, Matcher<T> matcher) throws ParseException {
T value = (T) evaluateJsonPath(content);
assertThat("JSON path" + this.expression, value, matcher);
assertThat("JSON path " + this.expression, value, matcher);
}
private Object evaluateJsonPath(String content) throws ParseException {