summaryrefslogtreecommitdiff
path: root/test/ruby/test_super.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_super.rb')
-rw-r--r--test/ruby/test_super.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_super.rb b/test/ruby/test_super.rb
index 16b623df61..df229a8f1a 100644
--- a/test/ruby/test_super.rb
+++ b/test/ruby/test_super.rb
@@ -83,6 +83,6 @@ class TestSuper < Test::Unit::TestCase
def test_define_method # [ruby-core:03856]
a = A.new
a.uu(12)
- assert_raise(RuntimeError) {a.tt(12)}
+ assert_equal("A#tt", a.tt(12))
end
end