[jboss-cvs] JBossAS SVN: r60341 - branches/Branch_4_2/ejb3/src/test/org/jboss/ejb3/test/clusteredsession/unit.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Feb 6 14:47:42 EST 2007


Author: bstansberry at jboss.com
Date: 2007-02-06 14:47:42 -0500 (Tue, 06 Feb 2007)
New Revision: 60341

Modified:
   branches/Branch_4_2/ejb3/src/test/org/jboss/ejb3/test/clusteredsession/unit/ExtendedPersistenceUnitTestCase.java
Log:
Correct assertion to reflect independent life of nested SFSB

Modified: branches/Branch_4_2/ejb3/src/test/org/jboss/ejb3/test/clusteredsession/unit/ExtendedPersistenceUnitTestCase.java
===================================================================
--- branches/Branch_4_2/ejb3/src/test/org/jboss/ejb3/test/clusteredsession/unit/ExtendedPersistenceUnitTestCase.java	2007-02-06 19:23:19 UTC (rev 60340)
+++ branches/Branch_4_2/ejb3/src/test/org/jboss/ejb3/test/clusteredsession/unit/ExtendedPersistenceUnitTestCase.java	2007-02-06 19:47:42 UTC (rev 60341)
@@ -151,7 +151,7 @@
       stateless.clearDestroyed();
       assertTrue(cart.isContainedActivated());      
       cart.checkout();
-      assertTrue("Contained bean was destroyed", stateless.isDestroyed());
+      assertFalse("Contained bean was destroyed", stateless.isDestroyed());
    }
 
    public static Test suite() throws Exception




More information about the jboss-cvs-commits mailing list