aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 9342a78617..a84aff2004 100644
--- a/test/ruby/test_module.rb
+++ b/test/ruby/test_module.rb
@@ -1721,7 +1721,7 @@ class TestModule < Test::Unit::TestCase
assert_equal [mod, obj.singleton_class, Object], obj.singleton_class.ancestors.first(3)
end
- def test_anonymous_module_public_class_method
+ def test_visibility_by_public_class_method
bug8284 = '[ruby-core:54404] [Bug #8284]'
assert_raise(NoMethodError) {Object.define_method}
Module.new.public_class_method(:define_method)