[jboss-cvs] JBossAS SVN: r64760 - 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 Aug 21 21:48:29 EDT 2007
Author: bdecoste
Date: 2007-08-21 21:48:29 -0400 (Tue, 21 Aug 2007)
New Revision: 64760
Modified:
branches/Branch_4_2/ejb3/src/test/org/jboss/ejb3/test/clusteredsession/unit/InvokeLocalTestBase.java
Log:
fix for org.jboss.ejb3.test.clusteredsession.unit.SimpleIsLocalInterceptorUnitTestCase. Also related test for removing IsLocalInterceptor
Modified: branches/Branch_4_2/ejb3/src/test/org/jboss/ejb3/test/clusteredsession/unit/InvokeLocalTestBase.java
===================================================================
--- branches/Branch_4_2/ejb3/src/test/org/jboss/ejb3/test/clusteredsession/unit/InvokeLocalTestBase.java 2007-08-22 01:47:42 UTC (rev 64759)
+++ branches/Branch_4_2/ejb3/src/test/org/jboss/ejb3/test/clusteredsession/unit/InvokeLocalTestBase.java 2007-08-22 01:48:29 UTC (rev 64760)
@@ -81,8 +81,6 @@
InitialContext ctx = new InitialContext(env);
VMTester tester = (VMTester) ctx.lookup(TESTER_JNDI_NAME);
- System.out.println("*** " + jndiURLs[0] + " " + jndiURLs[1]);
-
VMID localID = tester.getVMID();
assertNotNull("Got the local VMID", localID);
@@ -99,10 +97,6 @@
VMID passThroughID = tester.getVMIDFromRemote(remote);
assertNotNull("Got the remote VMID", passThroughID);
- System.out.println("*** localID " + localID);
- System.out.println("*** remoteID " + remoteID);
- System.out.println("*** passThroughID " + passThroughID);
-
if (expectLocal)
assertEquals("Call stayed local", localID, passThroughID);
else
@@ -110,9 +104,7 @@
passThroughID = tester.getVMIDFromRemoteLookup(jndiURLs[1], jndiName);
assertNotNull("Got the remote VMID", passThroughID);
-
- System.out.println("*** passThroughID " + passThroughID);
-
+
if (expectLocal)
assertEquals("Call stayed local", localID, passThroughID);
else
More information about the jboss-cvs-commits
mailing list