Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
mrkamel committed Mar 11, 2024
1 parent 8694cd8 commit 3ae0842
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/kraps/worker_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ def build_worker(args:, memory_limit: 128 * 1024 * 1024, chunk_limit: 32, concur
job = Job.new(worker: TestWorker).parallelize(partitions: 4) {}

job = job.map_partitions do |_, pairs, collector|
pairs.each do |key, _|
pairs.each_key do |key|
collector.call(key + "a", 1)
collector.call(key + "b", 1)
collector.call(key + "a", 1)
Expand Down

0 comments on commit 3ae0842

Please sign in to comment.