summaryrefslogtreecommitdiffstats
path: root/test/io
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-12-16 11:43:45 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-12-16 11:43:45 +0000
commit7f2c9e86d8bafb38da2371b6a4ed2e8804a2833c (patch)
tree2a6202b3b1a16183773522314bb154e752b73988 /test/io
parent0fb0096ffd3e07d9da2bb35954d5d6c9a4e27cce (diff)
downloadruby-7f2c9e86d8bafb38da2371b6a4ed2e8804a2833c.tar.gz
ruby-7f2c9e86d8bafb38da2371b6a4ed2e8804a2833c.tar.xz
ruby-7f2c9e86d8bafb38da2371b6a4ed2e8804a2833c.zip
* test/io/nonblock/test_flush.rb (TestIONonblock#test_flush): ignore read result.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@7579 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/io')
-rw-r--r--test/io/nonblock/test_flush.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/io/nonblock/test_flush.rb b/test/io/nonblock/test_flush.rb
index 4f56d0082..2afbba300 100644
--- a/test/io/nonblock/test_flush.rb
+++ b/test/io/nonblock/test_flush.rb
@@ -23,7 +23,6 @@ class TestIONonblock < Test::Unit::TestCase
end
}
assert_raise(IOError) {w.flush}
- t.join
- assert_equal("b", result)
+ assert_nothing_raised {t.join}
end
end if IO.method_defined?(:nonblock)