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 a6bd968 commit 3344e2eCopy full SHA for 3344e2e
spec/concurrent/executor/executor_service_shared.rb
@@ -69,7 +69,7 @@
69
subject.shutdown
70
subject.wait_for_termination
71
begin
72
- expect(subject.post{ latch2.count_down }).to be_falsey
+ subject.post{ latch2.count_down }
73
rescue Concurrent::RejectedExecutionError
74
end
75
expect(latch2.wait(0.2)).to be_falsey
@@ -134,7 +134,7 @@
134
latch.wait(1)
135
subject.kill
136
137
- expect(subject.post{ expected.make_true }).to be_falsey
+ subject.post{ expected.make_true }
138
139
140
sleep(0.1)
0 commit comments