File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ class Channel
26
26
expect ( subject . utc . to_f ) . to eq subject . epoch
27
27
end
28
28
29
- specify do
29
+ specify '#to_s formats as a time' , :truffle_bug => true do
30
30
expect ( subject . to_s ) . to match /\d {4}-\d {2}-\d {2} \d {2}:\d {2}:\d {2}\. \d {6} \+ \d {4} UTC/
31
31
end
32
32
Original file line number Diff line number Diff line change 100
100
expect ( subject . max_queue ) . to eq expected_max
101
101
end
102
102
103
- it 'returns the set value when running' do
103
+ it 'returns the set value when running' , :truffle_bug => true do # only actually fails for RubyThreadPoolExecutor
104
104
trigger = Concurrent ::Event . new
105
105
5 . times { subject . post { trigger . wait } }
106
106
expect ( subject . max_queue ) . to eq expected_max
115
115
end
116
116
end
117
117
118
- context '#queue_length' do
118
+ context '#queue_length' , :truffle_bug => true do # only actually fails for RubyThreadPoolExecutor
119
119
120
120
let! ( :expected_max ) { 10 }
121
121
subject do
You can’t perform that action at this time.
0 commit comments