You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@wookie.apache.org by sc...@apache.org on 2012/03/16 09:59:53 UTC

svn commit: r1301382 - /incubator/wookie/trunk/src-tests/org/apache/wookie/tests/functional/WidgetsControllerTest.java

Author: scottbw
Date: Fri Mar 16 08:59:52 2012
New Revision: 1301382

URL: http://svn.apache.org/viewvc?rev=1301382&view=rev
Log:
Remove the icon-testing widget during test teardown

Modified:
    incubator/wookie/trunk/src-tests/org/apache/wookie/tests/functional/WidgetsControllerTest.java

Modified: incubator/wookie/trunk/src-tests/org/apache/wookie/tests/functional/WidgetsControllerTest.java
URL: http://svn.apache.org/viewvc/incubator/wookie/trunk/src-tests/org/apache/wookie/tests/functional/WidgetsControllerTest.java?rev=1301382&r1=1301381&r2=1301382&view=diff
==============================================================================
--- incubator/wookie/trunk/src-tests/org/apache/wookie/tests/functional/WidgetsControllerTest.java (original)
+++ incubator/wookie/trunk/src-tests/org/apache/wookie/tests/functional/WidgetsControllerTest.java Fri Mar 16 08:59:52 2012
@@ -51,6 +51,7 @@ public class WidgetsControllerTest exten
   private static String WIDGET_ID_DELETE_TEST = "http://deletetest";
   private static String WIDGET_ID_NOT_SUPPORTED = "http://notsupported";
   private static String WIDGET_ID_UPLOAD_TEST = "http://uploadtest";
+  private static String WIDGET_ID_UPLOAD_TEST_2 = "http://uploadtest_2";
   
   @AfterClass
   public static void tearDown() throws HttpException, IOException{
@@ -60,6 +61,8 @@ public class WidgetsControllerTest exten
     client.executeMethod(delete);
     delete = new DeleteMethod(TEST_WIDGETS_SERVICE_URL_VALID + encodeString("/" + WIDGET_ID_UPLOAD_TEST));
     client.executeMethod(delete);
+    delete = new DeleteMethod(TEST_WIDGETS_SERVICE_URL_VALID + encodeString("/" + WIDGET_ID_UPLOAD_TEST_2));
+    client.executeMethod(delete);
   }
 	
   /**