[jboss-svn-commits] JBL Code SVN: r7045 - labs/jbossrules/trunk/drools-compiler/src/test/resources/org/drools/integrationtests

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Mon Oct 23 18:18:22 EDT 2006


Author: tirelli
Date: 2006-10-23 18:18:18 -0400 (Mon, 23 Oct 2006)
New Revision: 7045

Modified:
   labs/jbossrules/trunk/drools-compiler/src/test/resources/org/drools/integrationtests/not_rule_test.drl
Log:
Fixing integration tests

Modified: labs/jbossrules/trunk/drools-compiler/src/test/resources/org/drools/integrationtests/not_rule_test.drl
===================================================================
--- labs/jbossrules/trunk/drools-compiler/src/test/resources/org/drools/integrationtests/not_rule_test.drl	2006-10-23 22:17:42 UTC (rev 7044)
+++ labs/jbossrules/trunk/drools-compiler/src/test/resources/org/drools/integrationtests/not_rule_test.drl	2006-10-23 22:18:18 UTC (rev 7045)
@@ -14,7 +14,7 @@
 
 rule "not rule with bound variable"
     when
-        not Cheese( $price:price -> ( $price.intValue() == 5 ) )
+        not Cheese( $price:price -> ( $price == 5 ) )
     then
 		list.add( new Integer( 6 ) );
 end




More information about the jboss-svn-commits mailing list