From 286c33a211c47b70337b8f9a430dd99ae5cff221 Mon Sep 17 00:00:00 2001 From: Dimitris Christodoulou Date: Thu, 28 May 2026 14:24:03 +0100 Subject: [PATCH] RCBC-535: Upgrade to Minitest 6 --- Gemfile | 3 ++- test/scan_test.rb | 6 ------ 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/Gemfile b/Gemfile index 60b83122..0516a110 100644 --- a/Gemfile +++ b/Gemfile @@ -33,7 +33,8 @@ group :development do gem "heckle" gem "irb" # TODO(SA): review https://minite.st/docs/History_rdoc.html#label-6.0.0+-2F+2025-12-17 - gem "minitest", "< 6.0" + gem "minitest", "~> 6.0" + gem "minitest-mock" gem "minitest-reporters" gem "mutex_m" gem "opentelemetry-metrics-sdk", "~> 0.11.2" diff --git a/test/scan_test.rb b/test/scan_test.rb index 41c955af..09c5c445 100644 --- a/test/scan_test.rb +++ b/test/scan_test.rb @@ -252,8 +252,6 @@ def test_sampling_scan_batch_byte_limit end def test_range_scan_concurrency - skip("Skipped until CXXCBC-345 is resolved") - CONCURRENCY_VALUES.each do |c| expected_ids = (0..9).map { |i| "#{@shared_prefix}-1#{i}" } + (0..9).map { |i| "#{@shared_prefix}-2#{i}" } scan_result = @collection.scan( @@ -268,8 +266,6 @@ def test_range_scan_concurrency end def test_prefix_scan_concurrency - skip("Skipped until CXXCBC-345 is resolved") - CONCURRENCY_VALUES.each do |c| expected_ids = (0..9).map { |i| "#{@shared_prefix}-1#{i}" } scan_result = @collection.scan(PrefixScan.new("#{@shared_prefix}-1"), @@ -279,8 +275,6 @@ def test_prefix_scan_concurrency end def test_sampling_scan_concurrency - skip("Skipped until CXXCBC-345 is resolved") - CONCURRENCY_VALUES.each do |c| limit = 20 scan_result = @collection.scan(SamplingScan.new(limit), Options::Scan.new(concurrency: c, mutation_state: @mutation_state))