diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-11-07 08:56:18 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-11-07 08:56:18 +0000 |
commit | 1f5ecc52506ac5db7191756843046d77436e8e64 (patch) | |
tree | 6fc07fb23fb397b3ce755307112d8253d0c1fc52 /test | |
parent | 40a4d1c6e002fca5325e5fb231262754e75aa6d0 (diff) | |
download | ruby-1f5ecc52506ac5db7191756843046d77436e8e64.tar.gz ruby-1f5ecc52506ac5db7191756843046d77436e8e64.tar.xz ruby-1f5ecc52506ac5db7191756843046d77436e8e64.zip |
* class.c (rb_include_module): revert duplicate inclusion of
modules. [ruby-dev:29793]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11291 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r-- | test/ruby/test_clone.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_clone.rb b/test/ruby/test_clone.rb index 67d79fb8a..43c0cffa1 100644 --- a/test/ruby/test_clone.rb +++ b/test/ruby/test_clone.rb @@ -23,6 +23,6 @@ class TestClone < Test::Unit::TestCase assert_raises(NoMethodError) {foo.test2} - assert_equal([M003, M002, M001, M002], M003.ancestors) + assert_equal([M003, M002, M001], M003.ancestors) end end |