[ruby/net-http] Fix tests after change to allow HEAD to send Accept-Encoding

https://github.com/ruby/net-http/commit/ca7bb8c51c
This commit is contained in:
Jeremy Evans 2021-11-15 09:15:45 -08:00 коммит произвёл git
Родитель ca0a5edb5f
Коммит f1c3fc273d
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -46,8 +46,9 @@ class HTTPRequestTest < Test::Unit::TestCase
assert_not_predicate req, :response_body_permitted?
expected = {
'accept' => %w[*/*],
'user-agent' => %w[Ruby],
'accept' => %w[*/*],
"accept-encoding" => %w[gzip;q=1.0,deflate;q=0.6,identity;q=0.3],
'user-agent' => %w[Ruby],
}
assert_equal expected, req.to_hash.tap{_1.delete 'accept-encoding'}