summaryrefslogtreecommitdiff
path: root/test/test_open3.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_open3.rb')
-rw-r--r--test/test_open3.rb10
1 files changed, 1 insertions, 9 deletions
diff --git a/test/test_open3.rb b/test/test_open3.rb
index a06697a37b..19277c8a66 100644
--- a/test/test_open3.rb
+++ b/test/test_open3.rb
@@ -3,10 +3,6 @@
require 'test/unit'
require 'open3'
-if RUBY_ENGINE == 'ruby'
- require_relative 'lib/jit_support'
-end
-
class TestOpen3 < Test::Unit::TestCase
RUBY = EnvUtil.rubybin
@@ -130,11 +126,7 @@ class TestOpen3 < Test::Unit::TestCase
i.close
STDERR.reopen(old)
assert_equal("zo", o.read)
- if defined?(JITSupport)
- assert_equal("ze", JITSupport.remove_mjit_logs(r.read))
- else
- assert_equal("ze", r.read)
- end
+ assert_equal("ze", r.read)
}
}
}