From 7f1b79698881c55ce02efc5b291663d353d4a1c7 Mon Sep 17 00:00:00 2001 From: Kenney Westerhof Date: Fri, 5 Jan 2007 13:23:18 +0000 Subject: [PATCH] Fix compilation error git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@493028 13f79535-47bb-0310-9956-ffa450edef68 --- .../maven/plugin/PluginParameterExpressionEvaluatorTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java b/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java index c6e1563b38..63942cd426 100644 --- a/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java +++ b/maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorTest.java @@ -199,8 +199,8 @@ public class PluginParameterExpressionEvaluatorTest throws CycleDetectedException, DuplicateProjectException { return new MavenSession( container, new Settings(), repo, new DefaultEventDispatcher(), - new ReactorManager( Collections.EMPTY_LIST ), Collections.EMPTY_LIST, ".", - new Properties(), new Date() ); + new ReactorManager( Collections.EMPTY_LIST, ReactorManager.FAIL_FAST ), + Collections.EMPTY_LIST, ".", new Properties(), new Date() ); } public void testLocalRepositoryExtraction()