From 4707fdea0171aab43a1178d4344725d8ca145ada Mon Sep 17 00:00:00 2001 From: shugo Date: Thu, 10 Jan 2013 07:51:35 +0000 Subject: * vm_insnhelper.c (vm_search_super_method): raise a TypeError instead of a NotImplementError if self is not an instance of the current class. [ruby-dev:39772] [Bug #2402] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38761 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_super.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/ruby/test_super.rb') diff --git a/test/ruby/test_super.rb b/test/ruby/test_super.rb index bb1d46c636..9505dccdd1 100644 --- a/test/ruby/test_super.rb +++ b/test/ruby/test_super.rb @@ -265,7 +265,7 @@ class TestSuper < Test::Unit::TestCase end } obj = sub_class.new - assert_raise(NotImplementedError) do + assert_raise(TypeError) do obj.foo end end @@ -285,7 +285,7 @@ class TestSuper < Test::Unit::TestCase end } obj = sub_class.new - assert_raise(NotImplementedError) do + assert_raise(TypeError) do obj.foo end end @@ -321,7 +321,7 @@ class TestSuper < Test::Unit::TestCase end } obj = sub_class.new - assert_raise(NotImplementedError) do + assert_raise(TypeError) do obj.foo.call end end -- cgit v1.2.3