* test/ruby/test_io.rb (test_pid_after_close_read): fix typo.  pointed
  out by Peter Suschlik.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43133 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2013-10-03 11:41:50 +00:00
Родитель c4553abafa
Коммит fd3cdb5ee3
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1409,7 +1409,7 @@ class TestIO < Test::Unit::TestCase
assert_raise(IOError) { pipe.pid }
end
def tesst_pid_after_close_read
def test_pid_after_close_read
pid1 = pid2 = nil
IO.popen(["echo", ""], "r+") do |io|
pid1 = io.pid