summaryrefslogtreecommitdiff
path: root/sample/test.rb
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-11-07 08:56:18 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-11-07 08:56:18 +0000
commit6f1c934bc361ec5d01a0b4b1a45d07840af02dc3 (patch)
tree6fc07fb23fb397b3ce755307112d8253d0c1fc52 /sample/test.rb
parent568602aeeaa1636a8f74dcf967e15ebd0e843da7 (diff)
* 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 'sample/test.rb')
-rw-r--r--sample/test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/sample/test.rb b/sample/test.rb
index a32dbcbec2..aad5a094c3 100644
--- a/sample/test.rb
+++ b/sample/test.rb
@@ -1939,7 +1939,7 @@ module M003; include M002; end
module M002; include M001; end
module M003; include M002; end
-test_ok(M003.ancestors == [M003, M002, M001, M002])
+test_ok(M003.ancestors == [M003, M002, M001])
test_check "marshal"
$x = [1,2,3,[4,5,"foo"],{1=>"bar"},2.5,fact(30)]