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

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Mar 22 17:53:53 EDT 2007


Author: bdecoste
Date: 2007-03-22 17:53:53 -0400 (Thu, 22 Mar 2007)
New Revision: 61620

Modified:
   branches/Branch_4_2/ejb3/src/test/org/jboss/ejb3/test/container/unit/ContainerTestCase.java
Log:
fixed JNDI binding 

Modified: branches/Branch_4_2/ejb3/src/test/org/jboss/ejb3/test/container/unit/ContainerTestCase.java
===================================================================
--- branches/Branch_4_2/ejb3/src/test/org/jboss/ejb3/test/container/unit/ContainerTestCase.java	2007-03-22 20:52:17 UTC (rev 61619)
+++ branches/Branch_4_2/ejb3/src/test/org/jboss/ejb3/test/container/unit/ContainerTestCase.java	2007-03-22 21:53:53 UTC (rev 61620)
@@ -58,7 +58,7 @@
    {
       InitialContext jndiContext = new InitialContext();
       
-      Test3 test3 = (Test3)jndiContext.lookup("Test3");
+      Test3 test3 = (Test3)jndiContext.lookup("Test3Remote");
       assertNotNull(test3);
       test3.testAccess();
       




More information about the jboss-cvs-commits mailing list