You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@usergrid.apache.org by to...@apache.org on 2015/06/01 23:48:45 UTC

[36/50] [abbrv] incubator-usergrid git commit: RetrieveUsersTest.queryForUsername

RetrieveUsersTest.queryForUsername


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

Branch: refs/heads/USERGRID-628
Commit: d8ddbcc63692d05ad2dddd90be5baacb1a32f5e3
Parents: 4df53d1
Author: Shawn Feldman <sf...@apache.org>
Authored: Mon Jun 1 08:41:02 2015 -0600
Committer: Shawn Feldman <sf...@apache.org>
Committed: Mon Jun 1 08:41:02 2015 -0600

----------------------------------------------------------------------
 .../rest/applications/collection/users/RetrieveUsersTest.java   | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/d8ddbcc6/stack/rest/src/test/java/org/apache/usergrid/rest/applications/collection/users/RetrieveUsersTest.java
----------------------------------------------------------------------
diff --git a/stack/rest/src/test/java/org/apache/usergrid/rest/applications/collection/users/RetrieveUsersTest.java b/stack/rest/src/test/java/org/apache/usergrid/rest/applications/collection/users/RetrieveUsersTest.java
index b1b1f46..b7716ce 100644
--- a/stack/rest/src/test/java/org/apache/usergrid/rest/applications/collection/users/RetrieveUsersTest.java
+++ b/stack/rest/src/test/java/org/apache/usergrid/rest/applications/collection/users/RetrieveUsersTest.java
@@ -48,11 +48,12 @@ public class RetrieveUsersTest extends AbstractRestIT {
         CollectionEndpoint users =this.app().collection( "users" );
 
         Entity props = new Entity();
+        props.put( "username", "Bob" );
+        users.post(props);
         props.put( "username", "Alica" );
         users.post(props);
 
-        props.put( "username", "Bob" );
-        users.post(props);
+
 
         refreshIndex();