[jboss-cvs] JBossAS SVN: r77314 - trunk/testsuite/src/main/org/jboss/test/profileservice/test.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Aug 21 09:19:14 EDT 2008


Author: ALRubinger
Date: 2008-08-21 09:19:14 -0400 (Thu, 21 Aug 2008)
New Revision: 77314

Modified:
   trunk/testsuite/src/main/org/jboss/test/profileservice/test/DeployUnitTestCase.java
Log:
[JBAS-5867] Fix the JNDI Target

Modified: trunk/testsuite/src/main/org/jboss/test/profileservice/test/DeployUnitTestCase.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/profileservice/test/DeployUnitTestCase.java	2008-08-21 12:58:57 UTC (rev 77313)
+++ trunk/testsuite/src/main/org/jboss/test/profileservice/test/DeployUnitTestCase.java	2008-08-21 13:19:14 UTC (rev 77314)
@@ -155,7 +155,7 @@
          public void testManagedDeployment() throws Exception
          {
             InitialContext ic = new InitialContext();
-            BeanRemote3x bean = (BeanRemote3x) ic.lookup("BeanImpl3x/remote");
+            BeanRemote3x bean = (BeanRemote3x) ic.lookup("BeanImpl3x/remote-org.jboss.test.profileservice.ejb3x.BeanRemote3x");
             String entry1 = (String) bean.getEnvEntry("entry1");
             assertEquals("entry1Value", entry1);
          }




More information about the jboss-cvs-commits mailing list