Add awaits fix for a query analyzer test
The test QueryAnalyzerTests#testExactMatch_booleanQuery is failing since
8cdd950056
. This commit adds an awaits fix
for it until it can be addressed.
This commit is contained in:
parent
1891d4f83d
commit
a19fd5636b
|
@ -384,6 +384,7 @@ public class QueryAnalyzerTests extends ESTestCase {
|
|||
assertThat(terms.get(1).bytes(), equalTo(phraseQuery.getTerms()[1].bytes()));
|
||||
}
|
||||
|
||||
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/29363")
|
||||
public void testExactMatch_booleanQuery() {
|
||||
BooleanQuery.Builder builder = new BooleanQuery.Builder();
|
||||
TermQuery termQuery1 = new TermQuery(new Term("_field", "_term1"));
|
||||
|
|
Loading…
Reference in New Issue