summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-08-19 20:16:09 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-08-19 20:16:09 +0000
commitd167aae2c7c0222c1f6c51d9d0253c69905dbea0 (patch)
tree456c9adb278f445db8a5f031a5deac450a45791d
parent9ab04897bd06767f773b35c6958a0551981093aa (diff)
test/ruby/test_io.rb (test_select_leak): quiet unused variable warning
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64472 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-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 cf8c9651b8..0eb09f9044 100644
--- a/test/ruby/test_io.rb
+++ b/test/ruby/test_io.rb
@@ -3829,7 +3829,7 @@ __END__
th = Thread.new do
begin
IO.select(rset, wset)
- rescue => e
+ rescue
retry
end while true
end