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:
commit
618b38ef2b
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue