You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@usergrid.apache.org by ro...@apache.org on 2014/12/22 17:54:41 UTC

[35/50] incubator-usergrid git commit: comment out connections example

comment out connections example


Project: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/commit/90019502
Tree: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/tree/90019502
Diff: http://git-wip-us.apache.org/repos/asf/incubator-usergrid/diff/90019502

Branch: refs/heads/two-dot-o
Commit: 900195029c10f3d6b894f8fde051fb64d84976a9
Parents: 95fd8e5
Author: Shawn Feldman <sf...@apache.org>
Authored: Wed Dec 17 10:35:00 2014 -0700
Committer: Shawn Feldman <sf...@apache.org>
Committed: Wed Dec 17 10:35:00 2014 -0700

----------------------------------------------------------------------
 .../applications/collection/groups/GroupResourceIT.java  | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/90019502/stack/rest/src/test/java/org/apache/usergrid/rest/applications/collection/groups/GroupResourceIT.java
----------------------------------------------------------------------
diff --git a/stack/rest/src/test/java/org/apache/usergrid/rest/applications/collection/groups/GroupResourceIT.java b/stack/rest/src/test/java/org/apache/usergrid/rest/applications/collection/groups/GroupResourceIT.java
index ebba1dc..88195aa 100644
--- a/stack/rest/src/test/java/org/apache/usergrid/rest/applications/collection/groups/GroupResourceIT.java
+++ b/stack/rest/src/test/java/org/apache/usergrid/rest/applications/collection/groups/GroupResourceIT.java
@@ -126,11 +126,12 @@ public class GroupResourceIT extends AbstractRestIT {
         Group testGroup = this.app().groups().post(new Group(groupName, groupPath));
         assertNull(testGroup.get("errors"));
         assertEquals(testGroup.get("path"), groupPath);
-
-        this.app().groups()
-                .entityResource("carlovers")
-                .connections("likes","cars")
-                .connection("ferraris").delete();
+        /** connections
+         *   this.app().groups()
+         .entityResource("carlovers")
+         .connections("likes","cars")
+         .connection("ferraris").delete();
+         */
         //now change the name
         testGroup.put("path", newGroupPath);
         Group group = this.app().groups().uniqueID(testGroup.getName()).put(testGroup);