Use `response_vary_headers` method in requests/cache_spec (#29411)

This commit is contained in:
Matt Jankowski 2024-02-26 11:27:07 -05:00 committed by GitHub
parent 1540f42522
commit 8156113d58
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ describe 'Caching behavior' do
get '/users/alice'
expect(response).to redirect_to('/@alice')
expect(response.headers['Vary']&.split(',')&.map { |x| x.strip.downcase }).to include('accept')
expect(response_vary_headers).to include('accept')
end
end