You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by cs...@apache.org on 2013/11/11 14:31:28 UTC

svn commit: r1540711 - /karaf/trunk/itests/src/test/java/org/apache/karaf/itests/features/StandardFeaturesTest.java

Author: cschneider
Date: Mon Nov 11 13:31:28 2013
New Revision: 1540711

URL: http://svn.apache.org/r1540711
Log:
KARAF-2566 Fix for the test by uninstalling pax features by hand. This does not fix the dulicate asm though

Modified:
    karaf/trunk/itests/src/test/java/org/apache/karaf/itests/features/StandardFeaturesTest.java

Modified: karaf/trunk/itests/src/test/java/org/apache/karaf/itests/features/StandardFeaturesTest.java
URL: http://svn.apache.org/viewvc/karaf/trunk/itests/src/test/java/org/apache/karaf/itests/features/StandardFeaturesTest.java?rev=1540711&r1=1540710&r2=1540711&view=diff
==============================================================================
--- karaf/trunk/itests/src/test/java/org/apache/karaf/itests/features/StandardFeaturesTest.java (original)
+++ karaf/trunk/itests/src/test/java/org/apache/karaf/itests/features/StandardFeaturesTest.java Mon Nov 11 13:31:28 2013
@@ -57,11 +57,17 @@ public class StandardFeaturesTest extend
     @Test
     public void installHttpFeature() throws Exception {
         installAssertAndUninstallFeature("http");
+        
+        // TODO: Check why uninstalling http does not uninstall pax-http
+        featureService.uninstallFeature("pax-http");
     }
 
     @Test
     public void installHttpWhiteboardFeature() throws Exception {
         installAssertAndUninstallFeature("http-whiteboard");
+        
+        // TODO: Check why uninstalling http does not uninstall pax-http-whiteboard
+        featureService.uninstallFeature("pax-http-whiteboard");
     }
 
     @Test