diff options
author | Artur Signell <artur@vaadin.com> | 2015-03-02 22:51:18 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2015-03-02 22:51:27 +0200 |
commit | 2f9dfccb595a68609405ba822f346e41285c9458 (patch) | |
tree | 87ea66a3495eec396f9aa13640ec2ec5d0cc429f /uitest | |
parent | cc8829ccf3a2acd6919dfb7c7afd2385daaa11a0 (diff) | |
download | vaadin-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.java | 4 |
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); } } |