Browse Source

Add space separator in JsonPathExpectationsHelper

pull/530/head
Alex Panchenko 11 years ago
parent
commit
09341b996e
  1. 2
      spring-test/src/main/java/org/springframework/test/util/JsonPathExpectationsHelper.java

2
spring-test/src/main/java/org/springframework/test/util/JsonPathExpectationsHelper.java

@ -101,7 +101,7 @@ public class JsonPathExpectationsHelper { @@ -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);
}
/**

Loading…
Cancel
Save