From: <jbo...@li...> - 2006-06-29 22:25:16
|
Author: mar...@jb... Date: 2006-06-29 18:25:13 -0400 (Thu, 29 Jun 2006) New Revision: 4875 Modified: labs/jbossrules/trunk/drools-compiler/src/test/java/org/drools/integrationtests/IntegrationCases.java Log: JBRULES-312 Explicit 'and' is not working -It wasn't removing direct redundant ands, now fixed. Modified: labs/jbossrules/trunk/drools-compiler/src/test/java/org/drools/integrationtests/IntegrationCases.java =================================================================== --- labs/jbossrules/trunk/drools-compiler/src/test/java/org/drools/integrationtests/IntegrationCases.java 2006-06-29 22:00:55 UTC (rev 4874) +++ labs/jbossrules/trunk/drools-compiler/src/test/java/org/drools/integrationtests/IntegrationCases.java 2006-06-29 22:25:13 UTC (rev 4875) @@ -172,7 +172,7 @@ list.get( 0 ) ); } - public void FIXME_testExplicitAnd() throws Exception { + public void testExplicitAnd() throws Exception { final Reader reader = new InputStreamReader( getClass().getResourceAsStream( "test_ExplicitAnd.drl" ) ); final DrlParser parser = new DrlParser(); |