summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 4f56d00829..2afbba300e 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)