[jbosscache-commits] JBoss Cache SVN: r6459 - core/trunk/src/test/java/org/jboss/cache/marshall.

jbosscache-commits at lists.jboss.org jbosscache-commits at lists.jboss.org
Thu Jul 31 05:23:24 EDT 2008


Author: manik.surtani at jboss.com
Date: 2008-07-31 05:23:24 -0400 (Thu, 31 Jul 2008)
New Revision: 6459

Modified:
   core/trunk/src/test/java/org/jboss/cache/marshall/CacheMarshaller210Test.java
Log:
Fixed test

Modified: core/trunk/src/test/java/org/jboss/cache/marshall/CacheMarshaller210Test.java
===================================================================
--- core/trunk/src/test/java/org/jboss/cache/marshall/CacheMarshaller210Test.java	2008-07-31 09:18:06 UTC (rev 6458)
+++ core/trunk/src/test/java/org/jboss/cache/marshall/CacheMarshaller210Test.java	2008-07-31 09:23:24 UTC (rev 6459)
@@ -1,8 +1,8 @@
 package org.jboss.cache.marshall;
 
 import org.jboss.cache.Fqn;
+import org.jboss.cache.commands.legacy.write.PessPutKeyValueCommand;
 import org.jboss.cache.commands.remote.ReplicateCommand;
-import org.jboss.cache.commands.write.PutKeyValueCommand;
 import static org.testng.AssertJUnit.assertEquals;
 import org.testng.annotations.Test;
 
@@ -29,7 +29,7 @@
       Map map = createMap(size);
       Fqn fqn = Fqn.fromString("/my/stuff");
       String key = "key";
-      PutKeyValueCommand putCommand = new PutKeyValueCommand(null, fqn, key, map);
+      PessPutKeyValueCommand putCommand = new PessPutKeyValueCommand(null, fqn, key, map);
       ReplicateCommand replicateCommand = new ReplicateCommand(putCommand);
 
       byte[] buf = marshaller.objectToByteBuffer(replicateCommand);




More information about the jbosscache-commits mailing list