We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c924f5 commit 484540cCopy full SHA for 484540c
test/test_concurrency.rb
@@ -167,7 +167,7 @@ def test_ractor_with_pipelining
167
).new_client
168
c.pipelined do |pi|
169
pi.call('get', "key#{i}")
170
- pi.call('get', "key#{i}")
+ pi.call('echo', 'hi')
171
end
172
rescue StandardError => e
173
e
@@ -176,7 +176,7 @@ def test_ractor_with_pipelining
176
177
178
179
- ractors.each { |r| assert_equal([WANT, WANT], r.take) }
+ ractors.each { |r| assert_equal([WANT, 'hi'], r.take) }
180
181
182
def test_ractor_with_transaction
0 commit comments