summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 93eb871edc..1e9ad4d457 100644
--- a/test/ruby/test_process.rb
+++ b/test/ruby/test_process.rb
@@ -36,6 +36,6 @@ class TestProcess < Test::Unit::TestCase
exit 1
}
Process.wait pid
- assert_equal(0, $?.to_i)
+ assert_equal(0, $?.to_i, "#{$?}")
end
end