You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by bd...@apache.org on 2013/10/29 10:13:59 UTC

svn commit: r1536617 - /sling/trunk/launchpad/integration-tests/src/main/java/org/apache/sling/launchpad/webapp/integrationtest/DavExIntegrationTest.java

Author: bdelacretaz
Date: Tue Oct 29 09:13:59 2013
New Revision: 1536617

URL: http://svn.apache.org/r1536617
Log:
SLING-3210 - testDavexServletAccess not needed, the other test fails if the dummy service registration is removed in org.apache.sling.jcr.davex

Modified:
    sling/trunk/launchpad/integration-tests/src/main/java/org/apache/sling/launchpad/webapp/integrationtest/DavExIntegrationTest.java

Modified: sling/trunk/launchpad/integration-tests/src/main/java/org/apache/sling/launchpad/webapp/integrationtest/DavExIntegrationTest.java
URL: http://svn.apache.org/viewvc/sling/trunk/launchpad/integration-tests/src/main/java/org/apache/sling/launchpad/webapp/integrationtest/DavExIntegrationTest.java?rev=1536617&r1=1536616&r2=1536617&view=diff
==============================================================================
--- sling/trunk/launchpad/integration-tests/src/main/java/org/apache/sling/launchpad/webapp/integrationtest/DavExIntegrationTest.java (original)
+++ sling/trunk/launchpad/integration-tests/src/main/java/org/apache/sling/launchpad/webapp/integrationtest/DavExIntegrationTest.java Tue Oct 29 09:13:59 2013
@@ -84,14 +84,6 @@ public class DavExIntegrationTest extend
         }
     }
 
-    /** Verify that we can access the davex servlet without credentials (SLING-2274) */
-    public void testDavexServletAccess() throws IOException {
-        final HttpClient noCredentialsClient = new HttpClient();
-        final GetMethod get = new GetMethod(DAVEX_SERVER_URL);
-        final int status = noCredentialsClient.executeMethod(get);
-        assertEquals("With no HTTP credentials, expecting 200 status at " + DAVEX_SERVER_URL, 200, status);
-    }
-
     @Override
     protected void tearDown() throws Exception {
         repository = null;