From dfaf023d4a97f4356fc256a94951443b1893876f Mon Sep 17 00:00:00 2001 From: Alan Woodward Date: Mon, 18 Dec 2017 18:40:27 +0000 Subject: [PATCH] LUCENE-8099: Fix xmlqueryparser tests --- .../lucene/queryparser/xml/TestCorePlusQueriesParser.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lucene/queryparser/src/test/org/apache/lucene/queryparser/xml/TestCorePlusQueriesParser.java b/lucene/queryparser/src/test/org/apache/lucene/queryparser/xml/TestCorePlusQueriesParser.java index a91800fd763..0288d2cb083 100644 --- a/lucene/queryparser/src/test/org/apache/lucene/queryparser/xml/TestCorePlusQueriesParser.java +++ b/lucene/queryparser/src/test/org/apache/lucene/queryparser/xml/TestCorePlusQueriesParser.java @@ -31,9 +31,4 @@ public class TestCorePlusQueriesParser extends TestCoreParser { dumpResults("like this", q, 5); } - public void testBoostingQueryXML() throws Exception { - Query q = parse("BoostingQuery.xml"); - dumpResults("boosting ", q, 5); - } - }