File tree Expand file tree Collapse file tree 2 files changed +2
-9
lines changed
server/src/test/java/org/elasticsearch/action/search Expand file tree Collapse file tree 2 files changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -401,9 +401,6 @@ tests:
401401- class : org.elasticsearch.smoketest.SmokeTestMultiNodeClientYamlTestSuiteIT
402402 method : test {yaml=update/100_synthetic_source/keyword}
403403 issue : https://github.com/elastic/elasticsearch/issues/121992
404- - class : org.elasticsearch.action.search.SearchQueryThenFetchAsyncActionTests
405- method : testBottomFieldSort
406- issue : https://github.com/elastic/elasticsearch/issues/121503
407404- class : org.elasticsearch.xpack.logsdb.LogsdbTestSuiteIT
408405 method : test {yaml=/60_synthetic_source_recovery/synthetic recovery for synthetic source mode index}
409406 issue : https://github.com/elastic/elasticsearch/issues/122026
Original file line number Diff line number Diff line change @@ -219,12 +219,8 @@ protected void run() {
219219 if (withScroll ) {
220220 assertFalse (canReturnNullResponse .get ());
221221 assertThat (numWithTopDocs .get (), equalTo (0 ));
222- } else {
223- if (withCollapse ) {
224- assertThat (numWithTopDocs .get (), equalTo (0 ));
225- } else {
226- assertThat (numWithTopDocs .get (), greaterThanOrEqualTo (1 ));
227- }
222+ } else if (withCollapse ) {
223+ assertThat (numWithTopDocs .get (), equalTo (0 ));
228224 }
229225 SearchPhaseController .ReducedQueryPhase phase = action .results .reduce ();
230226 assertThat (phase .numReducePhases (), greaterThanOrEqualTo (1 ));
You can’t perform that action at this time.
0 commit comments