Add space separator in JsonPathExpectationsHelper

This commit is contained in:
Alex Panchenko 2014-04-25 18:04:54 +07:00
parent f5cbd9aa4a
commit 09341b996e
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ public class JsonPathExpectationsHelper {
assertEquals("For JSON path " + this.expression + " type of value",
expectedValue.getClass(), actualValue.getClass());
}
assertEquals("JSON path" + this.expression, expectedValue, actualValue);
assertEquals("JSON path " + this.expression, expectedValue, actualValue);
}
/**