From: Vincent Hennebert Date: Tue, 17 Apr 2007 16:21:45 +0000 (+0000) Subject: Make the fop.layoutengine.disabled property work with fop.layoutengine.starts-with X-Git-Tag: fop-0_94~138 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=2f6386898abd931ef8c81d9d32eaa0c22b9b67d1;p=xmlgraphics-fop.git Make the fop.layoutengine.disabled property work with fop.layoutengine.starts-with git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@529667 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/test/java/org/apache/fop/layoutengine/LayoutEngineTestSuite.java b/test/java/org/apache/fop/layoutengine/LayoutEngineTestSuite.java index a04fa8064..99a63f2b7 100644 --- a/test/java/org/apache/fop/layoutengine/LayoutEngineTestSuite.java +++ b/test/java/org/apache/fop/layoutengine/LayoutEngineTestSuite.java @@ -140,6 +140,7 @@ public class LayoutEngineTestSuite { } else if (startsWith != null) { filter = new PrefixFileFilter(startsWith); filter = new AndFileFilter(filter, new SuffixFileFilter(".xml")); + filter = decorateWithDisabledList(filter); } else { filter = new SuffixFileFilter(".xml"); filter = decorateWithDisabledList(filter);