From 89b202029a81b94c98cda439547e10205f317ac7 Mon Sep 17 00:00:00 2001 From: Rossen Stoyanchev Date: Tue, 15 Jul 2014 22:58:30 -0400 Subject: [PATCH] Fix failing test --- .../web/socket/sockjs/client/AbstractSockJsIntegrationTests.java | 1 + 1 file changed, 1 insertion(+) diff --git a/spring-websocket/src/test/java/org/springframework/web/socket/sockjs/client/AbstractSockJsIntegrationTests.java b/spring-websocket/src/test/java/org/springframework/web/socket/sockjs/client/AbstractSockJsIntegrationTests.java index 81c23ac6d3..3b96a455e4 100644 --- a/spring-websocket/src/test/java/org/springframework/web/socket/sockjs/client/AbstractSockJsIntegrationTests.java +++ b/spring-websocket/src/test/java/org/springframework/web/socket/sockjs/client/AbstractSockJsIntegrationTests.java @@ -102,6 +102,7 @@ public abstract class AbstractSockJsIntegrationTests { this.wac.register(TestConfig.class, upgradeStrategyConfigClass()); this.wac.refresh(); this.server = createWebSocketTestServer(); + this.server.setup(); this.server.deployConfig(this.wac, this.errorFilter); this.server.start(); this.baseUrl = "http://localhost:" + this.server.getPort();