Author: markt Date: Tue Jul 2 10:21:53 2013 New Revision: 1498868 URL: http://svn.apache.org/r1498868 Log: Line length
Modified: tomcat/trunk/test/org/apache/tomcat/websocket/TestWsWebSocketContainer.java Modified: tomcat/trunk/test/org/apache/tomcat/websocket/TestWsWebSocketContainer.java URL: http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/tomcat/websocket/TestWsWebSocketContainer.java?rev=1498868&r1=1498867&r2=1498868&view=diff ============================================================================== --- tomcat/trunk/test/org/apache/tomcat/websocket/TestWsWebSocketContainer.java (original) +++ tomcat/trunk/test/org/apache/tomcat/websocket/TestWsWebSocketContainer.java Tue Jul 2 10:21:53 2013 @@ -235,7 +235,8 @@ public class TestWsWebSocketContainer ex tomcat.start(); - Session wsSession = wsContainer.connectToServer(TesterProgrammaticEndpoint.class, + Session wsSession = wsContainer.connectToServer( + TesterProgrammaticEndpoint.class, ClientEndpointConfig.Builder.create().build(), new URI("ws://localhost:" + getPort() + TesterEchoServer.Config.PATH_BASIC)); @@ -323,7 +324,8 @@ public class TestWsWebSocketContainer ex tomcat.start(); - Session wsSession = wsContainer.connectToServer(TesterProgrammaticEndpoint.class, + Session wsSession = wsContainer.connectToServer( + TesterProgrammaticEndpoint.class, ClientEndpointConfig.Builder.create().build(), new URI("ws://localhost:" + getPort() + BlockingConfig.PATH)); @@ -406,7 +408,8 @@ public class TestWsWebSocketContainer ex tomcat.start(); - Session wsSession = wsContainer.connectToServer(TesterProgrammaticEndpoint.class, + Session wsSession = wsContainer.connectToServer( + TesterProgrammaticEndpoint.class, ClientEndpointConfig.Builder.create().build(), new URI("ws://localhost:" + getPort() + ConstantTxConfig.PATH)); --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org