From: Artur Signell Date: Mon, 2 Mar 2015 20:51:18 +0000 (+0200) Subject: Make server tests work again X-Git-Tag: 7.5.0.alpha1~54 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=2f9dfccb595a68609405ba822f346e41285c9458;p=vaadin-framework.git Make server tests work again Change-Id: Ie0097cef628ef013579067443d4a52be049cf1da --- diff --git a/uitest/src/com/vaadin/tests/integration/AbstractServletIntegrationTest.java b/uitest/src/com/vaadin/tests/integration/AbstractServletIntegrationTest.java index 941e988c5c..7e9a2138e4 100644 --- a/uitest/src/com/vaadin/tests/integration/AbstractServletIntegrationTest.java +++ b/uitest/src/com/vaadin/tests/integration/AbstractServletIntegrationTest.java @@ -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); } }