From 62542c72ebd1bcfc1f873c0407b78df4887005f6 Mon Sep 17 00:00:00 2001 From: Ankit Jain Date: Mon, 20 Nov 2023 23:00:43 +0530 Subject: [PATCH] Fixing the integration tests for reduced collector work Signed-off-by: Ankit Jain --- .../rest-api-spec/test/search.aggregation/10_histogram.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rest-api-spec/src/main/resources/rest-api-spec/test/search.aggregation/10_histogram.yml b/rest-api-spec/src/main/resources/rest-api-spec/test/search.aggregation/10_histogram.yml index 3b16cdb13a22f..a57d9b7bff591 100644 --- a/rest-api-spec/src/main/resources/rest-api-spec/test/search.aggregation/10_histogram.yml +++ b/rest-api-spec/src/main/resources/rest-api-spec/test/search.aggregation/10_histogram.yml @@ -546,7 +546,7 @@ setup: - match: { aggregations.histo.buckets.3.doc_count: 1 } - match: { profile.shards.0.aggregations.0.type: NumericHistogramAggregator } - match: { profile.shards.0.aggregations.0.description: histo } - - match: { profile.shards.0.aggregations.0.breakdown.collect_count: 4 } + - match: { profile.shards.0.aggregations.0.breakdown.collect_count: 1 } - match: { profile.shards.0.aggregations.0.debug.total_buckets: 3 } --- @@ -598,7 +598,7 @@ setup: - match: { aggregations.histo.buckets.0.doc_count: 2 } - match: { profile.shards.0.aggregations.0.type: DateHistogramAggregator } - match: { profile.shards.0.aggregations.0.description: histo } - - match: { profile.shards.0.aggregations.0.breakdown.collect_count: 4 } + - match: { profile.shards.0.aggregations.0.breakdown.collect_count: 1 } - match: { profile.shards.0.aggregations.0.debug.total_buckets: 3 } ---