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 ee89fb6 commit 3d6146eCopy full SHA for 3d6146e
spec/concurrent/edge/future_spec.rb
@@ -61,7 +61,7 @@
61
62
expect(future.value!).to eq queue
63
expect(queue.pop).to eq 2
64
- expect(queue.pop).to be_between(0.1, 0.2)
+ expect(queue.pop).to be_between(0.05, 0.2)
65
66
start = Time.now.to_f
67
queue = Queue.new
@@ -73,7 +73,7 @@
73
74
75
76
77
end
78
79
it 'scheduled execution in graph' do
@@ -88,7 +88,7 @@
88
future.wait!
89
90
91
- expect(queue.pop).to be_between(0.2, 0.3)
+ expect(queue.pop).to be_between(0.1, 0.3)
92
93
94
0 commit comments