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

Merge pull request #9651 from vipulnsward/change_to_each_value_intest

Change from each to each_value on hash to avoid unused variable warning
This commit is contained in:
Carlos Antonio da Silva 2013-03-10 14:14:22 -07:00
commit 618b38ef2b

View file

@ -164,7 +164,7 @@ class UrlEncodedParamsParsingTest < ActionDispatch::IntegrationTest
return
end
object.each do |k,v|
object.each_value do |v|
case v
when Hash
assert_utf8(v)