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

jbosscache-commits at lists.jboss.org jbosscache-commits at lists.jboss.org
Mon Sep 1 00:29:13 EDT 2008


Author: manik.surtani at jboss.com
Date: 2008-09-01 00:29:13 -0400 (Mon, 01 Sep 2008)
New Revision: 6647

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


Modified: core/trunk/src/test/java/org/jboss/cache/marshall/CacheMarshaller210Test.java
===================================================================
--- core/trunk/src/test/java/org/jboss/cache/marshall/CacheMarshaller210Test.java	2008-08-29 16:16:29 UTC (rev 6646)
+++ core/trunk/src/test/java/org/jboss/cache/marshall/CacheMarshaller210Test.java	2008-09-01 04:29:13 UTC (rev 6647)
@@ -1,7 +1,7 @@
 package org.jboss.cache.marshall;
 
 import org.jboss.cache.Fqn;
-import org.jboss.cache.commands.legacy.write.PessPutKeyValueCommand;
+import org.jboss.cache.commands.write.PutKeyValueCommand;
 import org.jboss.cache.commands.remote.ReplicateCommand;
 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";
-      PessPutKeyValueCommand putCommand = new PessPutKeyValueCommand(null, fqn, key, map);
+      PutKeyValueCommand putCommand = new PutKeyValueCommand(null, fqn, key, map);
       ReplicateCommand replicateCommand = new ReplicateCommand(putCommand);
 
       byte[] buf = marshaller.objectToByteBuffer(replicateCommand);




More information about the jbosscache-commits mailing list