You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@usergrid.apache.org by sn...@apache.org on 2014/01/16 18:30:06 UTC

[10/51] [abbrv] git commit: Removed test that was based on previous exception handling.

Removed test that was based on previous exception handling.


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

Branch: refs/heads/two-dot-o
Commit: 609570e1ad2764d6d85ee7d760e941a2fbdfb73c
Parents: 9766e57
Author: GERey <gr...@apigee.com>
Authored: Mon Jan 13 11:36:22 2014 -0800
Committer: GERey <gr...@apigee.com>
Committed: Mon Jan 13 11:36:22 2014 -0800

----------------------------------------------------------------------
 .../usergrid/rest/applications/ApplicationResourceIT.java | 10 ----------
 1 file changed, 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/609570e1/stack/rest/src/test/java/org/usergrid/rest/applications/ApplicationResourceIT.java
----------------------------------------------------------------------
diff --git a/stack/rest/src/test/java/org/usergrid/rest/applications/ApplicationResourceIT.java b/stack/rest/src/test/java/org/usergrid/rest/applications/ApplicationResourceIT.java
index 0207bd7..e316bef 100644
--- a/stack/rest/src/test/java/org/usergrid/rest/applications/ApplicationResourceIT.java
+++ b/stack/rest/src/test/java/org/usergrid/rest/applications/ApplicationResourceIT.java
@@ -528,14 +528,4 @@ public class ApplicationResourceIT extends AbstractRestIT {
 
         assertNotNull( node.get( "entities" ) );
     }
-    @Test
-    public void pinExceptionVerification () throws Exception {
-        ApplicationInfo appinfo = setup.getMgmtSvc().getApplicationInfo( "test-organization/test-app" );
-
-        JsonNode node = resource().path( "/test-organization/test-app/token" ).queryParam( "username", "ed@anuff.com" )
-                .queryParam( "pin", "//b//a//!//$**$&#(bulrs" ).queryParam( "grant_type", "pin" )
-                .accept( MediaType.APPLICATION_JSON ).type( MediaType.APPLICATION_JSON_TYPE ).get( JsonNode.class );
-
-
-    }
 }