Author: sebb
Date: Thu Apr  3 00:15:04 2014
New Revision: 1584223

URL: http://svn.apache.org/r1584223
Log:
Static access

Modified:
    
commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/RemoteCacheServerFactoryUnitTest.java

Modified: 
commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/RemoteCacheServerFactoryUnitTest.java
URL: 
http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/RemoteCacheServerFactoryUnitTest.java?rev=1584223&r1=1584222&r2=1584223&view=diff
==============================================================================
--- 
commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/RemoteCacheServerFactoryUnitTest.java
 (original)
+++ 
commons/proper/jcs/trunk/src/test/org/apache/commons/jcs/auxiliary/remote/server/RemoteCacheServerFactoryUnitTest.java
 Thu Apr  3 00:15:04 2014
@@ -24,6 +24,7 @@ import java.util.Properties;
 
 import junit.framework.TestCase;
 
+import 
org.apache.commons.jcs.auxiliary.remote.behavior.ICommonRemoteCacheAttributes;
 import org.apache.commons.jcs.auxiliary.remote.behavior.IRemoteCacheConstants;
 
 /** Unit tests for the factory */
@@ -70,7 +71,7 @@ public class RemoteCacheServerFactoryUni
         RemoteCacheServerAttributes result = 
RemoteCacheServerFactory.configureRemoteCacheServerAttributes( props );
 
         // VERIFY
-        assertEquals( "Wrong timeout", 
RemoteCacheServerAttributes.DEFAULT_RMI_SOCKET_FACTORY_TIMEOUT_MILLIS, 
result.getRmiSocketFactoryTimeoutMillis() );
+        assertEquals( "Wrong timeout", 
ICommonRemoteCacheAttributes.DEFAULT_RMI_SOCKET_FACTORY_TIMEOUT_MILLIS, 
result.getRmiSocketFactoryTimeoutMillis() );
     }
 
     /** verify that we get the registryKeepAliveDelayMillis value */


Reply via email to