aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYusuke Endoh <mame@ruby-lang.org>2019-12-17 00:44:32 +0900
committerYusuke Endoh <mame@ruby-lang.org>2019-12-17 00:44:53 +0900
commitbba6386d9568123a7c76693e3a5fa5e33562a640 (patch)
tree01e6d445073c4e44ccb5a4226eff6cc8cd8e97d1
parentc6b1342d29a71e44c0275516d4f8408ce07bf397 (diff)
downloadruby-bba6386d9568123a7c76693e3a5fa5e33562a640.tar.gz
test/ruby/test_process.rb: suppress "unused variable" warning
-rw-r--r--test/ruby/test_process.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb
index 32b415c1b3..e0cb49b8ef 100644
--- a/test/ruby/test_process.rb
+++ b/test/ruby/test_process.rb
@@ -1515,7 +1515,7 @@ class TestProcess < Test::Unit::TestCase
STDERR.reopen(STDOUT)
begin
raise "[Bug #16424]"
- rescue => e
+ rescue
abort
end
end;