diff --git a/test/ruby/test_symbol.rb b/test/ruby/test_symbol.rb index ac73dc9137..4d29d96f51 100644 --- a/test/ruby/test_symbol.rb +++ b/test/ruby/test_symbol.rb @@ -80,5 +80,6 @@ class TestSymbol < Test::Unit::TestCase assert_nothing_raised(ArgumentError) { :object_id.to_proc.call([]) } assert_nothing_raised(ArgumentError) { :object_id.to_proc.call([1]) } assert_nothing_raised(ArgumentError) { :object_id.to_proc.call([1,2]) } + assert_nothing_raised(ArgumentError) { :object_id.to_proc.call([1,[2,3]]) } end end