1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/ruby/test_array.rb (test_join2): fixed typo.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24018 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-07-10 11:41:27 +00:00
parent af8f8e5b0e
commit 5d8b373b05

View file

@ -1495,7 +1495,7 @@ class TestArray < Test::Unit::TestCase
def (a = Object.new).to_a
[self]
end
assert_equal("[...]", [a].join, , '[ruby-core:24150]')
assert_equal("[...]", [a].join, '[ruby-core:24150]')
end
def test_to_a2