summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzverok <zverok.offline@gmail.com>2019-10-27 13:32:17 +0200
committerKoichi Sasada <ko1@atdot.net>2019-11-20 13:42:56 +0900
commitbaf482bab4776f781c3569d9f581e38bbf0548e1 (patch)
tree1d35ec2424316ad4541fa7c2167fcc03be3cef02
parent4b583cff97025394fab4a014a2a8606dfb557475 (diff)
Fix test_module.rb
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/2618
-rw-r--r--test/ruby/test_module.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_module.rb b/test/ruby/test_module.rb
index 79f7965623..3ddfcd9c4f 100644
--- a/test/ruby/test_module.rb
+++ b/test/ruby/test_module.rb
@@ -2372,7 +2372,7 @@ class TestModule < Test::Unit::TestCase
A.prepend InspectIsShallow
- expect = "#<Method: A(ShallowInspect)#inspect(shallow_inspect) -:7>"
+ expect = "#<Method: A(ShallowInspect)#inspect(shallow_inspect)() -:7>"
assert_equal expect, A.new.method(:inspect).inspect, "#{bug_10282}"
RUBY
end