[jboss-cvs] JBossCache/tests/functional/org/jboss/cache/api ...

Manik Surtani msurtani at jboss.com
Fri Jan 19 05:50:43 EST 2007


  User: msurtani
  Date: 07/01/19 05:50:43

  Modified:    tests/functional/org/jboss/cache/api  SyncReplTest.java
  Log:
  API Changes
  
  Revision  Changes    Path
  1.11      +2 -2      JBossCache/tests/functional/org/jboss/cache/api/SyncReplTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: SyncReplTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/api/SyncReplTest.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -b -r1.10 -r1.11
  --- SyncReplTest.java	11 Jan 2007 13:49:05 -0000	1.10
  +++ SyncReplTest.java	19 Jan 2007 10:50:43 -0000	1.11
  @@ -104,7 +104,7 @@
         map.put("1", "1");
         map.put("2", "2");
         caches[0].getInvocationContext().getOptionOverrides().setSuppressLocking(true);
  -      caches[0].getRoot().addChild(fqn).put(map);
  +      caches[0].getRoot().addChild(fqn).putAll(map);
         caches[0].getInvocationContext().getOptionOverrides().setSuppressLocking(true);
         assertEquals("Value should be set", "1", caches[0].get(fqn, "1"));
   
  @@ -112,7 +112,7 @@
         map.put("3", "3");
         map.put("4", "4");
         caches[0].getInvocationContext().getOptionOverrides().setSuppressLocking(true);
  -      caches[0].getRoot().addChild(fqn1).put(map);
  +      caches[0].getRoot().addChild(fqn1).putAll(map);
   
         caches[0].getInvocationContext().getOptionOverrides().setSuppressLocking(true);
         assertEquals("Value should be set", "2", caches[0].get(fqn, "2"));
  
  
  



More information about the jboss-cvs-commits mailing list