[jboss-cvs] JBossAS SVN: r67223 - trunk/ejb3/src/test/org/jboss/ejb3/test/ejbthree1066/unit.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sat Nov 17 15:48:49 EST 2007


Author: ALRubinger
Date: 2007-11-17 15:48:49 -0500 (Sat, 17 Nov 2007)
New Revision: 67223

Modified:
   trunk/ejb3/src/test/org/jboss/ejb3/test/ejbthree1066/unit/MultiBusinessDescriptorUnitTestCase.java
Log:
Updated assertion error messages

Modified: trunk/ejb3/src/test/org/jboss/ejb3/test/ejbthree1066/unit/MultiBusinessDescriptorUnitTestCase.java
===================================================================
--- trunk/ejb3/src/test/org/jboss/ejb3/test/ejbthree1066/unit/MultiBusinessDescriptorUnitTestCase.java	2007-11-17 16:36:52 UTC (rev 67222)
+++ trunk/ejb3/src/test/org/jboss/ejb3/test/ejbthree1066/unit/MultiBusinessDescriptorUnitTestCase.java	2007-11-17 20:48:49 UTC (rev 67223)
@@ -53,8 +53,8 @@
       {
          Object bean = getInitialContext().lookup("CalculatorBean/remote");
          
-         assertTrue("bean must have Adder as business interface", bean instanceof Adder);
-         assertTrue("bean must have Adder as business interface", bean instanceof Subtractor);
+         assertTrue("bean must have " + Adder.class.getName() + " as business interface", bean instanceof Adder);
+         assertTrue("bean must have " + Subtractor.class.getName()+" as business interface", bean instanceof Subtractor);
          
          int actual;
          




More information about the jboss-cvs-commits mailing list