From 8762b4c81664e303e26c68117c461dd4798021ce Mon Sep 17 00:00:00 2001 From: Jesse McConnell Date: Tue, 30 Jun 2009 21:38:32 +0000 Subject: [PATCH] [BUG-27751] fix up test case from missing class git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@449 7e9141cc-0065-0410-87d8-b60c137991c4 --- .../src/test/java/org/eclipse/jetty/policy/TestJettyPolicy.java | 2 +- .../java/org/eclipse/jetty/policy/TestJettyPolicyRuntime.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jetty-policy/src/test/java/org/eclipse/jetty/policy/TestJettyPolicy.java b/jetty-policy/src/test/java/org/eclipse/jetty/policy/TestJettyPolicy.java index ab9b4ff0004..8b66e58b138 100644 --- a/jetty-policy/src/test/java/org/eclipse/jetty/policy/TestJettyPolicy.java +++ b/jetty-policy/src/test/java/org/eclipse/jetty/policy/TestJettyPolicy.java @@ -33,7 +33,7 @@ import junit.framework.TestCase; public class TestJettyPolicy extends TestCase { - PropertyEvaluator evaluator = new PropertyEvaluator( new HashMap()); + HashMap evaluator = new HashMap(); @Override diff --git a/jetty-policy/src/test/java/org/eclipse/jetty/policy/TestJettyPolicyRuntime.java b/jetty-policy/src/test/java/org/eclipse/jetty/policy/TestJettyPolicyRuntime.java index 80ca6fd42f6..ad01af89752 100644 --- a/jetty-policy/src/test/java/org/eclipse/jetty/policy/TestJettyPolicyRuntime.java +++ b/jetty-policy/src/test/java/org/eclipse/jetty/policy/TestJettyPolicyRuntime.java @@ -27,7 +27,7 @@ import junit.framework.TestCase; public class TestJettyPolicyRuntime extends TestCase { - PropertyEvaluator evaluator = new PropertyEvaluator( new HashMap()); + HashMap evaluator = new HashMap(); @Override protected void setUp() throws Exception