summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-05-08 00:00:13 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-05-08 00:00:13 +0000
commit3dd6c0d30c16242b8f9b6a6a3936949efc3e8649 (patch)
treeafc9f687e42f4221ea09c99b2231b874bd60305d /test
parente8ec23b1c09d2b62698f06552e3cadd75f69a9a7 (diff)
Remove unreachable break
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63354 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_io.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/test/ruby/test_io.rb b/test/ruby/test_io.rb
index 377a225450..13a7fb678a 100644
--- a/test/ruby/test_io.rb
+++ b/test/ruby/test_io.rb
@@ -567,7 +567,6 @@ class TestIO < Test::Unit::TestCase
w2.nonblock = true
rescue Errno::EBADF
skip "nonblocking IO for pipe is not implemented"
- break
end
s = w2.syswrite("a" * 100000)
t = Thread.new { sleep 0.1; r2.read }