From 549af505c5587267d114dd5ffb816047e7f22b4f Mon Sep 17 00:00:00 2001 From: Kazuhiro NISHIYAMA Date: Mon, 17 Jan 2022 15:10:27 +0900 Subject: [PATCH] [ruby/net-http] Remove redundant MJIT condition ref https://github.com/ruby/ruby/commit/da0f67c0383f57129c7a76255964b1ee739d8db8 https://github.com/ruby/net-http/commit/dbeb5f1c8f --- test/net/http/test_httpresponse.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/net/http/test_httpresponse.rb b/test/net/http/test_httpresponse.rb index 1a78907284..86a467ac19 100644 --- a/test/net/http/test_httpresponse.rb +++ b/test/net/http/test_httpresponse.rb @@ -78,7 +78,7 @@ EOS def test_read_body_block_mod # http://ci.rvm.jp/results/trunk-mjit-wait@silicon-docker/3019353 - if defined?(RubyVM::MJIT) ? RubyVM::MJIT.enabled? : defined?(RubyVM::MJIT) && RubyVM::MJIT.enabled? + if defined?(RubyVM::MJIT) && RubyVM::MJIT.enabled? omit 'too unstable with --jit-wait, and extending read_timeout did not help it' end IO.pipe do |r, w|