diff options
author | Marco Collovati <mcollovati@gmail.com> | 2018-03-05 15:08:47 +0100 |
---|---|---|
committer | Ilia Motornyi <elmot@vaadin.com> | 2018-03-05 17:08:47 +0300 |
commit | bc515ea11d08850a59162a22874e929eb4562d37 (patch) | |
tree | 00d5c55d16fb802f99dfaf8ce8a587e15eb5d3e1 /server | |
parent | f44f4f1b5155eccda20d6790ea571ca2406c0153 (diff) | |
download | vaadin-framework-bc515ea11d08850a59162a22874e929eb4562d37.tar.gz vaadin-framework-bc515ea11d08850a59162a22874e929eb4562d37.zip |
Fixed comment to reflect test expectation (#10676)
Diffstat (limited to 'server')
-rw-r--r-- | server/src/test/java/com/vaadin/server/VaadinServletServiceTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/test/java/com/vaadin/server/VaadinServletServiceTest.java b/server/src/test/java/com/vaadin/server/VaadinServletServiceTest.java index 1630d3b968..a940d42f7a 100644 --- a/server/src/test/java/com/vaadin/server/VaadinServletServiceTest.java +++ b/server/src/test/java/com/vaadin/server/VaadinServletServiceTest.java @@ -52,7 +52,7 @@ public class VaadinServletServiceTest { assertEquals("./../..", location); // http://dummy.host/contextpath/servlet/extra/stuff/ - // should return ./../.. (relative url resolving to /contextpath) + // should return ./../../.. (relative url resolving to /contextpath) location = testLocation("http://dummy.host", "/contextpath", "/servlet", "/extra/stuff/"); assertEquals("./../../..", location); |