Change from each to each_value on hash to avoid unused variable warning

This commit is contained in:
Vipul A M 2013-03-11 00:26:23 +05:30
parent dff4d4ad2b
commit a0906da6b3
1 changed files with 1 additions and 1 deletions

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)