[jboss-cvs] JBossCache/tests/functional/org/jboss/cache/passivation ...
Manik Surtani
manik at jboss.org
Fri Jul 13 10:31:42 EDT 2007
User: msurtani
Date: 07/07/13 10:31:42
Modified: tests/functional/org/jboss/cache/passivation
PassivationTestsBase.java
Log:
Remove unnecessary sync
Revision Changes Path
1.31 +32 -32 JBossCache/tests/functional/org/jboss/cache/passivation/PassivationTestsBase.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: PassivationTestsBase.java
===================================================================
RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/passivation/PassivationTestsBase.java,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -b -r1.30 -r1.31
--- PassivationTestsBase.java 11 Jun 2007 12:58:17 -0000 1.30
+++ PassivationTestsBase.java 13 Jul 2007 14:31:42 -0000 1.31
@@ -39,7 +39,7 @@
* Base tests for passivation using any of the cache loaders
*
* @author <a href="mailto:{hmesha at novell.com}">{Hany Mesha}</a>
- * @version $Id: PassivationTestsBase.java,v 1.30 2007/06/11 12:58:17 msurtani Exp $
+ * @version $Id: PassivationTestsBase.java,v 1.31 2007/07/13 14:31:42 msurtani Exp $
*/
abstract public class PassivationTestsBase extends TestCase
{
@@ -275,7 +275,7 @@
fail(e.toString());
}
cache.get("1/2/3/4/5/d");// get from loader but doesn't load attributes
- assertEquals(false, loader.exists(Fqn.fromString("1/2/3/4/5/d")));
+ assertEquals(true, loader.exists(Fqn.fromString("1/2/3/4/5/d")));
assertTrue(cache.exists("1/2/3/4/5/d"));
System.out.println("-- 1/2/3/4/5/d exists");
cache.get("1/2/3/4/5/d", "key");// activate node
More information about the jboss-cvs-commits
mailing list