From 6b910fe06f30fddf39ebafaaad8c04c5082002b3 Mon Sep 17 00:00:00 2001 From: Oliver Gierke Date: Thu, 16 Apr 2015 09:25:27 +0200 Subject: [PATCH] DATAREST-521 - Removed toString() output from test cases. --- .../rest/webmvc/json/PersistentEntitySerializationTests.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/spring-data-rest-webmvc/src/test/java/org/springframework/data/rest/webmvc/json/PersistentEntitySerializationTests.java b/spring-data-rest-webmvc/src/test/java/org/springframework/data/rest/webmvc/json/PersistentEntitySerializationTests.java index d9a526a8c..da320a092 100644 --- a/spring-data-rest-webmvc/src/test/java/org/springframework/data/rest/webmvc/json/PersistentEntitySerializationTests.java +++ b/spring-data-rest-webmvc/src/test/java/org/springframework/data/rest/webmvc/json/PersistentEntitySerializationTests.java @@ -200,8 +200,6 @@ public class PersistentEntitySerializationTests { String result = mapper.writeValueAsString(persistentEntityResource); - System.out.println(result); - assertThat(JsonPath.read(result, "$_embedded.users[*].address"), is(notNullValue())); }