You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@olingo.apache.org by sk...@apache.org on 2014/01/16 16:20:59 UTC

git commit: [OLINGO-117] fix checkstyle issues

Updated Branches:
  refs/heads/olingo-117 61547345e -> 677bea9c4


[OLINGO-117] fix checkstyle issues


Project: http://git-wip-us.apache.org/repos/asf/incubator-olingo-odata2/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-olingo-odata2/commit/677bea9c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-olingo-odata2/tree/677bea9c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-olingo-odata2/diff/677bea9c

Branch: refs/heads/olingo-117
Commit: 677bea9c4d4bbd6941dc8906d72453ec8a4f3700
Parents: 6154734
Author: Stephan Klevenz <sk...@apache.org>
Authored: Thu Jan 16 16:01:53 2014 +0100
Committer: Stephan Klevenz <sk...@apache.org>
Committed: Thu Jan 16 16:01:53 2014 +0100

----------------------------------------------------------------------
 .../core/ep/producer/JsonFeedWithDeltaLinkProducerTest.java | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-olingo-odata2/blob/677bea9c/odata2-lib/odata-core/src/test/java/org/apache/olingo/odata2/core/ep/producer/JsonFeedWithDeltaLinkProducerTest.java
----------------------------------------------------------------------
diff --git a/odata2-lib/odata-core/src/test/java/org/apache/olingo/odata2/core/ep/producer/JsonFeedWithDeltaLinkProducerTest.java b/odata2-lib/odata-core/src/test/java/org/apache/olingo/odata2/core/ep/producer/JsonFeedWithDeltaLinkProducerTest.java
index 3095b7a..d1ff8ee 100644
--- a/odata2-lib/odata-core/src/test/java/org/apache/olingo/odata2/core/ep/producer/JsonFeedWithDeltaLinkProducerTest.java
+++ b/odata2-lib/odata-core/src/test/java/org/apache/olingo/odata2/core/ep/producer/JsonFeedWithDeltaLinkProducerTest.java
@@ -147,13 +147,16 @@ public class JsonFeedWithDeltaLinkProducerTest extends BaseTest {
         .contains("{\"@odata.context\":\"$metadata#Rooms/$deletedEntity\",\""));
     assertTrue(
         "Somthing wrong with deleted entry!",
-        json.contains("{\"@odata.context\":\"$metadata#Rooms/$deletedEntity\",\"id\":\"http://host:80/service/Rooms('3')\"}"));
+        json.contains("{\"@odata.context\":\"$metadata#Rooms/$deletedEntity\",\"id\":\"http://"
+            + "host:80/service/Rooms('3')\"}"));
     assertTrue(
         "Somthing wrong with deleted entry!",
-        json.contains("{\"@odata.context\":\"$metadata#Rooms/$deletedEntity\",\"id\":\"http://host:80/service/Rooms('4')\"}"));
+        json.contains("{\"@odata.context\":\"$metadata#Rooms/$deletedEntity\",\"id\":\"http://"
+            + "host:80/service/Rooms('4')\"}"));
     assertTrue(
         "Somthing wrong with deleted entry!",
-        json.contains("{\"@odata.context\":\"$metadata#Rooms/$deletedEntity\",\"id\":\"http://host:80/service/Rooms('5')\"}"));
+        json.contains("{\"@odata.context\":\"$metadata#Rooms/$deletedEntity\",\"id\":\"http://"
+            + "host:80/service/Rooms('5')\"}"));
   }
 
   private String writeRoomData(final EdmEntitySet entitySet, TombstoneCallback tombstoneCallback)