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 caf1814 commit ee89fb6Copy full SHA for ee89fb6
spec/concurrent/atomic/cyclic_barrier_spec.rb
@@ -68,7 +68,6 @@ module Concurrent
68
69
start_latch.wait(1)
70
barrier.reset
71
- expect(continue_latch.wait(1)).to be_truthy
72
73
expect(barrier).not_to be_broken
74
expect(barrier.number_waiting).to eq 0
@@ -115,7 +114,6 @@ module Concurrent
115
114
it 'can be reused' do
116
first_latch = CountDownLatch.new(parties)
117
parties.times { Thread.new { barrier.wait; first_latch.count_down } }
118
- expect(first_latch.wait(1)).to be_truthy
119
120
latch = CountDownLatch.new(parties)
121
parties.times { Thread.new { barrier.wait; latch.count_down } }
0 commit comments