[jbosscache-commits] JBoss Cache SVN: r5627 -	core/trunk/src/test/java/org/jboss/cache/marshall.
    jbosscache-commits at lists.jboss.org 
    jbosscache-commits at lists.jboss.org
       
    Tue Apr 22 12:37:30 EDT 2008
    
    
  
Author: manik.surtani at jboss.com
Date: 2008-04-22 12:37:30 -0400 (Tue, 22 Apr 2008)
New Revision: 5627
Modified:
   core/trunk/src/test/java/org/jboss/cache/marshall/ActiveInactiveTest.java
Log:
Got rid of hacky MethodCallWrapper and implemented a new rpc invoke method in CommandAwareRpcDispatcher
Modified: core/trunk/src/test/java/org/jboss/cache/marshall/ActiveInactiveTest.java
===================================================================
--- core/trunk/src/test/java/org/jboss/cache/marshall/ActiveInactiveTest.java	2008-04-22 16:37:15 UTC (rev 5626)
+++ core/trunk/src/test/java/org/jboss/cache/marshall/ActiveInactiveTest.java	2008-04-22 16:37:30 UTC (rev 5627)
@@ -153,7 +153,7 @@
    public void testObjectFromByteBuffer() throws Exception
    {
       PutKeyValueCommand put = new PutKeyValueCommand(null, A_B, "name", "Joe", false, false);
-      MethodCallWrapper replicate = new MethodCallWrapper(new ReplicateCommand(put));
+      ReplicateCommand replicate = new ReplicateCommand(put);
 
       rman.setDefaultInactive(true);
       // register A as an inactive marshalling region
    
    
More information about the jbosscache-commits
mailing list