[jboss-remoting-commits] JBoss Remoting SVN: r5055 - remoting2/branches/2.2/src/tests/org/jboss/test/remoting/transport/socket/configuration.

jboss-remoting-commits at lists.jboss.org jboss-remoting-commits at lists.jboss.org
Fri Apr 17 23:44:38 EDT 2009


Author: ron.sigal at jboss.com
Date: 2009-04-17 23:44:38 -0400 (Fri, 17 Apr 2009)
New Revision: 5055

Modified:
   remoting2/branches/2.2/src/tests/org/jboss/test/remoting/transport/socket/configuration/SocketRetryConfigTestCase.java
Log:
JBREM-1078: Removed reference to MicroSocketClientInvoker.getNumberOfRetries().

Modified: remoting2/branches/2.2/src/tests/org/jboss/test/remoting/transport/socket/configuration/SocketRetryConfigTestCase.java
===================================================================
--- remoting2/branches/2.2/src/tests/org/jboss/test/remoting/transport/socket/configuration/SocketRetryConfigTestCase.java	2009-04-16 05:12:21 UTC (rev 5054)
+++ remoting2/branches/2.2/src/tests/org/jboss/test/remoting/transport/socket/configuration/SocketRetryConfigTestCase.java	2009-04-18 03:44:38 UTC (rev 5055)
@@ -39,7 +39,7 @@
    public void testConfig() throws Throwable
    {
       InvokerLocator locator = new InvokerLocator("socket://localhost:8888" + "/?" + SocketClientInvoker.SO_TIMEOUT_FLAG + "=" + timeout + "&" +
-                                                  "NumberOfRetries=" + socketRetries + "&NumberOfCallRetries=" + callRetries);
+                                                  "&NumberOfCallRetries=" + callRetries);
 
       Connector connector = new Connector("socket://localhost:8888");
       Client client = new Client(locator);
@@ -52,7 +52,6 @@
 
          SocketClientInvoker invoker = (SocketClientInvoker)client.getInvoker();
 
-         assertEquals(socketRetries, invoker.getNumberOfRetries());
          assertEquals(callRetries, invoker.getNumberOfCallRetries());
          assertEquals(timeout, invoker.getTimeout());
          assertEquals(Boolean.FALSE.booleanValue(), invoker.checkingConnection());




More information about the jboss-remoting-commits mailing list