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 | 6f1c934bc361ec5d01a0b4b1a45d07840af02dc3 (patch) | |
tree | 6fc07fb23fb397b3ce755307112d8253d0c1fc52 /test/ruby | |
parent | 568602aeeaa1636a8f74dcf967e15ebd0e843da7 (diff) | |
download | ruby-6f1c934bc361ec5d01a0b4b1a45d07840af02dc3.tar.gz |
* class.c (rb_include_module): revert duplicate inclusion of
modules. [ruby-dev:29793]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11291 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby')
-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 67d79fb8a5..43c0cffa1d 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 |