summaryrefslogtreecommitdiffstats
path: root/uitest
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2015-03-02 22:51:18 +0200
committerArtur Signell <artur@vaadin.com>2015-03-02 22:51:27 +0200
commit2f9dfccb595a68609405ba822f346e41285c9458 (patch)
tree87ea66a3495eec396f9aa13640ec2ec5d0cc429f /uitest
parentcc8829ccf3a2acd6919dfb7c7afd2385daaa11a0 (diff)
downloadvaadin-framework-2f9dfccb595a68609405ba822f346e41285c9458.tar.gz
vaadin-framework-2f9dfccb595a68609405ba822f346e41285c9458.zip
Make server tests work again
Change-Id: Ie0097cef628ef013579067443d4a52be049cf1da
Diffstat (limited to 'uitest')
-rw-r--r--uitest/src/com/vaadin/tests/integration/AbstractServletIntegrationTest.java4
1 files changed, 2 insertions, 2 deletions
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);
}
}