From f2ed8a3319ab9a9003d7a0a8c6590e8434ee6a28 Mon Sep 17 00:00:00 2001 From: Fernando Briano Date: Tue, 26 May 2026 15:52:00 +0100 Subject: [PATCH 1/2] [Test Runner] Remove method parameter from cat.count test --- elasticsearch-api/api-spec-testing/test_file/action.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/elasticsearch-api/api-spec-testing/test_file/action.rb b/elasticsearch-api/api-spec-testing/test_file/action.rb index 869dd57605..048b1f0f70 100644 --- a/elasticsearch-api/api-spec-testing/test_file/action.rb +++ b/elasticsearch-api/api-spec-testing/test_file/action.rb @@ -187,6 +187,10 @@ def perform_action(method, args, client, test) end @response = client.send(method, prepare_arguments(args, test)) client + when 'count' + args.delete('method') + @response = client.send(method, prepare_arguments(args, test)) + client else @response = client.send(method, prepare_arguments(args, test)) client From 8d835797a754d8d9e256a288cdd35d71b7771e4b Mon Sep 17 00:00:00 2001 From: Fernando Briano Date: Tue, 26 May 2026 17:03:02 +0100 Subject: [PATCH 2/2] [Test Runner] Skips server internal error test for aggregations/date_histogram --- elasticsearch-api/spec/rest_api/skipped_tests_free.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/elasticsearch-api/spec/rest_api/skipped_tests_free.yml b/elasticsearch-api/spec/rest_api/skipped_tests_free.yml index 9a3d0c6191..134289beeb 100644 --- a/elasticsearch-api/spec/rest_api/skipped_tests_free.yml +++ b/elasticsearch-api/spec/rest_api/skipped_tests_free.yml @@ -271,3 +271,6 @@ - :file: 'tsdb/05_dimension_and_metric_in_non_tsdb_index.yml' :description: '*' +- + :file: 'aggregations/date_histogram.yml' + :description: 'date_histogram with hard_bounds outside data under a parent agg'