aboutsummaryrefslogtreecommitdiffstats
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.rb5
1 files changed, 1 insertions, 4 deletions
diff --git a/test/ruby/test_super.rb b/test/ruby/test_super.rb
index 7d4048b342..535383ee80 100644
--- a/test/ruby/test_super.rb
+++ b/test/ruby/test_super.rb
@@ -228,11 +228,8 @@ class TestSuper < Test::Unit::TestCase
A.send(:include, Override)
end
- # [Bug #3351]
def test_double_include
- assert_equal([:Base, :Override], DoubleInclude::B.new.foo)
- # should be changed as follows?
- # assert_equal([:Base, :Override, :Override], DoubleInclude::B.new.foo)
+ assert_equal([:Base, :Override, :Override], DoubleInclude::B.new.foo, "[Bug #3351]")
end
module DoubleInclude2