Author: kkolinko
Date: Mon Oct 27 23:14:20 2014
New Revision: 1634735

URL: http://svn.apache.org/r1634735
Log:
Correct typo

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=1634735&r1=1634734&r2=1634735&view=diff
==============================================================================
--- tomcat/trunk/test/org/apache/tomcat/websocket/TestWsWebSocketContainer.java 
(original)
+++ tomcat/trunk/test/org/apache/tomcat/websocket/TestWsWebSocketContainer.java 
Mon Oct 27 23:14:20 2014
@@ -389,7 +389,7 @@ public class TestWsWebSocketContainer ex
     }
 
 
-    private static volatile boolean timoutOnContainer = false;
+    private static volatile boolean timeoutOnContainer = false;
 
     private void doTestWriteTimeoutServer(boolean setTimeoutOnContainer)
             throws Exception {
@@ -404,7 +404,7 @@ public class TestWsWebSocketContainer ex
          *       because the API uses classes and the tests really need access
          *       to the instances which simply isn't possible.
          */
-        timoutOnContainer = setTimeoutOnContainer;
+        timeoutOnContainer = setTimeoutOnContainer;
 
         Tomcat tomcat = getTomcatInstance();
 
@@ -558,7 +558,7 @@ public class TestWsWebSocketContainer ex
             exception = null;
             running = true;
 
-            if (!TestWsWebSocketContainer.timoutOnContainer) {
+            if (!TestWsWebSocketContainer.timeoutOnContainer) {
                 session.getAsyncRemote().setSendTimeout(TIMEOUT_MS);
             }
 
@@ -607,7 +607,7 @@ public class TestWsWebSocketContainer ex
             try {
                 sc.addEndpoint(ServerEndpointConfig.Builder.create(
                         ConstantTxEndpoint.class, PATH).build());
-                if (TestWsWebSocketContainer.timoutOnContainer) {
+                if (TestWsWebSocketContainer.timeoutOnContainer) {
                     sc.setAsyncSendTimeout(TIMEOUT_MS);
                 }
             } catch (DeploymentException e) {



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to