Fix missing space in assertion message

This commit is contained in:
Esko Luontola
2015-06-01 10:56:53 -04:00
committed by Rossen Stoyanchev
parent 4297612e4c
commit 89c1674b89
@@ -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 {