aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-10-03 11:41:50 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-10-03 11:41:50 +0000
commitfd3cdb5ee3011f4273b5d06c38605fc9e35bfa36 (patch)
tree959f2665a98da548ba4db2001b129424f0a29c88 /test
parentc4553abafa64a07a8099fbcef6220cb713c100d4 (diff)
downloadruby-fd3cdb5ee3011f4273b5d06c38605fc9e35bfa36.tar.gz
test_io.rb: fix typo
* 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
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_io.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb
index c95b25d5ef..1351ee12a9 100644
--- a/test/ruby/test_io.rb
+++ b/test/ruby/test_io.rb
@@ -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