aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_open3.rb
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-06-30 09:34:41 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-06-30 11:45:37 +0900
commit409b0ec4c3c4878c0ba164d1303de67787157808 (patch)
tree292c5554ee9f81571b760d359ac9513c44da3ee0 /test/test_open3.rb
parent84837e6d16cb0e588b1acc2691cb1048b9a89989 (diff)
downloadruby-409b0ec4c3c4878c0ba164d1303de67787157808.tar.gz
Suppress unused variable warnings
Diffstat (limited to 'test/test_open3.rb')
-rw-r--r--test/test_open3.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test_open3.rb b/test/test_open3.rb
index 848f70b07d..24bd08e597 100644
--- a/test/test_open3.rb
+++ b/test/test_open3.rb
@@ -320,5 +320,6 @@ class TestOpen3 < Test::Unit::TestCase
command = [RUBY, '-e', 'puts "test_integer_and_symbol_key"']
out, status = Open3.capture2(*command, :chdir => '.', 2 => IO::NULL)
assert_equal("test_integer_and_symbol_key\n", out)
+ assert_predicate(status, :success?)
end
end