summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-11-22 09:18:40 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-11-22 09:18:40 +0000
commitb309975a913d371ca0359214ea338919ed6ba48d (patch)
tree95c6a78c510bd0362f4acf3188746512825b314c /test/ruby
parent6a65f2b1e479f268489b51a004b6c153c634c68a (diff)
Revert r63030
* array.c (rb_ary_collect): no longer splat sole array for lambda. [ruby-core:89734] [Bug #15285] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65923 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_array.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/ruby/test_array.rb b/test/ruby/test_array.rb
index 1b102c4658..aaf3eca58c 100644
--- a/test/ruby/test_array.rb
+++ b/test/ruby/test_array.rb
@@ -549,7 +549,9 @@ class TestArray < Test::Unit::TestCase
assert_kind_of Enumerator, @cls[1, 2, 3].collect
- assert_equal([[1, 2, 3]], [[1, 2, 3]].collect(&->(a, b, c) {[a, b, c]}))
+ assert_raise(ArgumentError) {
+ assert_equal([[1, 2, 3]], [[1, 2, 3]].collect(&->(a, b, c) {[a, b, c]}))
+ }
end
# also update map!