There was an error while loading. Please reload this page.
1 parent 8e00bea commit 6e25c4cCopy full SHA for 6e25c4c
spec/spec_helper.rb
@@ -61,9 +61,9 @@ def generate_topic_name
61
"#{RUN_ID}-topic-#{SecureRandom.uuid}"
62
end
63
64
- def create_random_topic(*args)
+ def create_random_topic(**args)
65
topic = generate_topic_name
66
- create_topic(topic, *args)
+ create_topic(topic, **args)
67
topic
68
69
spec/transaction_manager_spec.rb
@@ -591,10 +591,10 @@
591
)
592
593
allow(group_coordinator).to receive(:txn_offset_commit).and_return(
594
- txn_offset_commit_response(
+ txn_offset_commit_response({
595
'hello' => [1],
596
'world' => [2]
597
- )
+ })
598
599
600
0 commit comments