summaryrefslogtreecommitdiff
path: root/spec/ruby/core/io/shared/write.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/io/shared/write.rb')
-rw-r--r--spec/ruby/core/io/shared/write.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/core/io/shared/write.rb b/spec/ruby/core/io/shared/write.rb
index 270b84ac39..5e53d981c5 100644
--- a/spec/ruby/core/io/shared/write.rb
+++ b/spec/ruby/core/io/shared/write.rb
@@ -99,7 +99,7 @@ describe :io_write, shared: true do
# For instance, MJIT creates a worker before @r.close with fork(), @r.close happens,
# and the MJIT worker keeps the pipe open until the worker execve().
# TODO: consider acquiring GVL from MJIT worker.
- guard_not -> { defined?(RubyVM::MJIT) && RubyVM::MJIT.enabled? } do
+ guard_not -> { defined?(RubyVM::JIT) && RubyVM::JIT.enabled? } do
it "raises Errno::EPIPE if the read end is closed and does not die from SIGPIPE" do
@r.close
-> { @w.send(@method, "foo") }.should raise_error(Errno::EPIPE, /Broken pipe/)