]> source.dussan.org Git - vaadin-framework.git/commitdiff
Make server tests work again
authorArtur Signell <artur@vaadin.com>
Mon, 2 Mar 2015 20:51:18 +0000 (22:51 +0200)
committerArtur Signell <artur@vaadin.com>
Mon, 2 Mar 2015 20:51:27 +0000 (22:51 +0200)
Change-Id: Ie0097cef628ef013579067443d4a52be049cf1da

uitest/src/com/vaadin/tests/integration/AbstractServletIntegrationTest.java

index 941e988c5c994b44e2284f1d1ac884e440764d17..7e9a2138e4c9c4b3ec3fb5219ba3b382b5e92f4f 100644 (file)
@@ -39,8 +39,8 @@ public abstract class AbstractServletIntegrationTest extends
     }
 
     @Override
-    protected String getDeploymentPath() {
-        return "/demo" + super.getDeploymentPath();
+    protected String getDeploymentPath(Class<?> uiClass) {
+        return "/demo" + super.getDeploymentPath(uiClass);
     }
 
 }