diff options
Diffstat (limited to 'test/ruby/test_array.rb')
-rw-r--r-- | test/ruby/test_array.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/ruby/test_array.rb b/test/ruby/test_array.rb index 02733b941a..adac3e19d7 100644 --- a/test/ruby/test_array.rb +++ b/test/ruby/test_array.rb @@ -1280,7 +1280,8 @@ class TestArray < Test::Unit::TestCase def test_splat a = [2,3] assert_equal([1,2,3], [1, *a]) + bug2401 = '[ruby-dev:39771]' a = [2,3] - assert_equal([2,3], [*a]) + assert_equal([2,3], [*a], bug2401) end end |