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

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Sun Aug 26 23:23:57 EDT 2007


Author: mark.proctor at jboss.com
Date: 2007-08-26 23:23:56 -0400 (Sun, 26 Aug 2007)
New Revision: 14620

Modified:
   labs/jbossrules/trunk/drools-compiler/src/test/java/org/drools/integrationtests/DynamicRulesTest.java
Log:
JBRULES-1137 Rules are not removed when they have shared nodes
-making failing test pass

Modified: labs/jbossrules/trunk/drools-compiler/src/test/java/org/drools/integrationtests/DynamicRulesTest.java
===================================================================
--- labs/jbossrules/trunk/drools-compiler/src/test/java/org/drools/integrationtests/DynamicRulesTest.java	2007-08-27 02:30:28 UTC (rev 14619)
+++ labs/jbossrules/trunk/drools-compiler/src/test/java/org/drools/integrationtests/DynamicRulesTest.java	2007-08-27 03:23:56 UTC (rev 14620)
@@ -225,17 +225,17 @@
         if ( reteooRuleBase != null ) {
             assertEquals( 1,
                           reteooRuleBase.getPackages().length );
-            assertEquals( 4,
+            assertEquals( 5,
                           reteooRuleBase.getPackages()[0].getRules().length );
 
             reteooRuleBase.removeRule( "org.drools.test",
                                        "Who likes Stilton" );
-            assertEquals( 3,
+            assertEquals( 4,
                           reteooRuleBase.getPackages()[0].getRules().length );
 
             reteooRuleBase.removeRule( "org.drools.test",
                                        "like cheese" );
-            assertEquals( 2,
+            assertEquals( 3,
                           reteooRuleBase.getPackages()[0].getRules().length );
 
             reteooRuleBase.removePackage( "org.drools.test" );




More information about the jboss-svn-commits mailing list