Browse Source

Fix failing test

pull/592/head
Rossen Stoyanchev 12 years ago
parent
commit
89b202029a
  1. 1
      spring-websocket/src/test/java/org/springframework/web/socket/sockjs/client/AbstractSockJsIntegrationTests.java

1
spring-websocket/src/test/java/org/springframework/web/socket/sockjs/client/AbstractSockJsIntegrationTests.java

@ -102,6 +102,7 @@ public abstract class AbstractSockJsIntegrationTests { @@ -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();

Loading…
Cancel
Save