Use `&.` instead of modifier if

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63638 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kazu 2018-06-12 14:36:30 +00:00
Родитель 55539f9bb8
Коммит ed2987cb62
1 изменённых файлов: 2 добавлений и 3 удалений

Просмотреть файл

@ -18,8 +18,8 @@ class TestPTY < Test::Unit::TestCase
else
assert_equal("a\r\n", r.gets)
ensure
r.close if r
w.close if w
r&.close
w&.close
Process.wait pid if pid
end
@ -239,4 +239,3 @@ class TestPTY < Test::Unit::TestCase
skip $!
end
end if defined? PTY