From f75fe0bcc7d1143f33c91ab2096aafcf618394d2 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 13 Mar 2015 06:04:39 +0000 Subject: stringio.c: don't raise after close * ext/stringio/stringio.c (strio_close): don't raise on dobule close for consistent to IO#close. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49962 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/stringio/test_stringio.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/stringio') diff --git a/test/stringio/test_stringio.rb b/test/stringio/test_stringio.rb index 6ba1e25791..966bbe1bd4 100644 --- a/test/stringio/test_stringio.rb +++ b/test/stringio/test_stringio.rb @@ -207,7 +207,7 @@ class TestStringIO < Test::Unit::TestCase f = StringIO.new("") f.close_read assert_raise(IOError) { f.read } - assert_raise(IOError) { f.close_read } + assert_nothing_raised(IOError) {f.close_read} f.close f = StringIO.new("", "w") @@ -221,7 +221,7 @@ class TestStringIO < Test::Unit::TestCase f = StringIO.new("") f.close_write assert_raise(IOError) { f.write("foo") } - assert_raise(IOError) { f.close_write } + assert_nothing_raised(IOError) {f.close_write} f.close f = StringIO.new("", "r") -- cgit v1.2.3