You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by js...@apache.org on 2004/10/30 00:30:09 UTC

svn commit: rev 56001 - incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/java/instantiate

Author: jsong
Date: Fri Oct 29 15:30:07 2004
New Revision: 56001

Modified:
   incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/java/instantiate/TestInstantiate.java
Log:
Reverse the change made by r56000.


Modified: incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/java/instantiate/TestInstantiate.java
==============================================================================
--- incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/java/instantiate/TestInstantiate.java	(original)
+++ incubator/beehive/trunk/controls/test/src/units/org/apache/beehive/controls/test/java/instantiate/TestInstantiate.java	Fri Oct 29 15:30:07 2004
@@ -52,7 +52,7 @@
 		driver.setControl(hc);
 		report=driver.doTest();
 		String result=report.getStatus();
-		if (result.equals(Report.PASS))
+		if (!result.equals(Report.PASS))
 			fail(report.getMessage());
     }