From 09341b996e17e3c526d77a0de3b3048771a4cbb3 Mon Sep 17 00:00:00 2001 From: Alex Panchenko Date: Fri, 25 Apr 2014 18:04:54 +0700 Subject: [PATCH] Add space separator in JsonPathExpectationsHelper --- .../springframework/test/util/JsonPathExpectationsHelper.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-test/src/main/java/org/springframework/test/util/JsonPathExpectationsHelper.java b/spring-test/src/main/java/org/springframework/test/util/JsonPathExpectationsHelper.java index 87608730ad..f8e303ce2b 100644 --- a/spring-test/src/main/java/org/springframework/test/util/JsonPathExpectationsHelper.java +++ b/spring-test/src/main/java/org/springframework/test/util/JsonPathExpectationsHelper.java @@ -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); } /**