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 774896f commit d8f9ea8Copy full SHA for d8f9ea8
test/net/http/test_httpresponse.rb
@@ -78,7 +78,7 @@ def test_read_body_block
78
79
def test_read_body_block_mod
80
# http://ci.rvm.jp/results/trunk-mjit-wait@silicon-docker/3019353
81
- if defined?(RubyVM::JIT) && RubyVM::JIT.enabled? || defined?(RubyVM::MJIT) && RubyVM::MJIT.enabled?
+ if defined?(RubyVM::JIT) ? RubyVM::JIT.enabled? : defined?(RubyVM::MJIT) && RubyVM::MJIT.enabled?
82
skip 'too unstable with --jit-wait, and extending read_timeout did not help it'
83
end
84
IO.pipe do |r, w|
0 commit comments