Skip to content

Commit dbeb5f1

Browse files
committed
Remove redundant MJIT condition
ref ruby/ruby@da0f67c
1 parent ac68ee5 commit dbeb5f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/net/http/test_httpresponse.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def test_read_body_block
7878

7979
def test_read_body_block_mod
8080
# http://ci.rvm.jp/results/trunk-mjit-wait@silicon-docker/3019353
81-
if defined?(RubyVM::MJIT) ? RubyVM::MJIT.enabled? : defined?(RubyVM::MJIT) && RubyVM::MJIT.enabled?
81+
if defined?(RubyVM::MJIT) && RubyVM::MJIT.enabled?
8282
omit 'too unstable with --jit-wait, and extending read_timeout did not help it'
8383
end
8484
IO.pipe do |r, w|

0 commit comments

Comments
 (0)