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 827999a commit c2316a2Copy full SHA for c2316a2
CHANGELOG.md
@@ -3,6 +3,7 @@
3
* C extension for MRI have been extracted into the `concurrent-ruby-ext` companion gem.
4
Please see the README for more detail.
5
* Better variable isolation in `Promise` and `Future` via an `:args` option
6
+* Continued to update intermittently failing tests
7
8
## Current Release v0.7.2 (24 January 2015)
9
spec/concurrent/utility/timer_spec.rb
@@ -22,8 +22,7 @@ module Concurrent
22
Concurrent::timer(0.1){ latch.count_down }
23
latch.wait(1)
24
diff = Time.now.to_f - start
25
- expect(diff).to be > 0.1
26
- expect(diff).to be < 0.5
+ expect(diff).to be_within(0.02).of(0.1)
27
end
28
29
it 'suppresses exceptions thrown by the block' do
0 commit comments