summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-10 11:41:27 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-10 11:41:27 +0000
commit5d8b373b05d8710a397c2b8da0406847c5e883ec (patch)
tree1ece7680b63539836a452ab531c9ccdf009d8310 /test/ruby
parentaf8f8e5b0e135570f9e5cd2aa8e949ec2e204b31 (diff)
* 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
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_array.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_array.rb b/test/ruby/test_array.rb
index 8a442087ae..469cd53865 100644
--- a/test/ruby/test_array.rb
+++ b/test/ruby/test_array.rb
@@ -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