Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
supercaracal committed Sep 26, 2024
1 parent a5e9f01 commit e8b48d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_against_cluster_scale.rb
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ def self.test_order
end

def do_test_after_scaled_out
all_keys = NUMBER_OF_KEYS.map { |i| "key#{i}" }
all_keys = Array.new(NUMBER_OF_KEYS) { |i| "key#{i}" }
count = 0

@client.scan do |key|
Expand All @@ -260,7 +260,7 @@ def do_test_after_scaled_out
end

def do_test_after_scaled_in
all_keys = NUMBER_OF_KEYS.map { |i| "key#{i}" }
all_keys = Array.new(NUMBER_OF_KEYS) { |i| "key#{i}" }

retryable(attempts: 3) do
count = 0
Expand Down

0 comments on commit e8b48d5

Please sign in to comment.