summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_arity.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/ruby/test_arity.rb b/test/ruby/test_arity.rb
index 18ef9b2d03..e026841749 100644
--- a/test/ruby/test_arity.rb
+++ b/test/ruby/test_arity.rb
@@ -3,7 +3,7 @@ require 'test/unit'
class TestArity < Test::Unit::TestCase
def err_mess(method_proc = nil, argc = 0)
args = (1..argc).to_a
- err = assert_raise(ArgumentError) do
+ assert_raise_with_message(ArgumentError, /wrong number of arguments \((.*)\)/) do
case method_proc
when nil
yield
@@ -13,8 +13,6 @@ class TestArity < Test::Unit::TestCase
method_proc.call(*args)
end
end
- s = err.to_s
- assert s =~ /wrong number of arguments \((.*)\)/, "Unexpected ArgumentError's message: #{s}"
$1
end