0
0
Fork 0

Fix Performance/RedundantEqualityComparisonBlock cop (#24799)

This commit is contained in:
Matt Jankowski 2023-05-03 04:30:10 -04:00 committed by GitHub
parent 9c1929efad
commit 97385f27bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 7 deletions

View file

@ -26,7 +26,7 @@ describe 'Link headers' do
def link_header_with_type(type)
LinkHeader.parse(response.headers['Link'].to_s).links.find do |link|
link.attr_pairs.any? { |pair| pair == ['type', type] }
link.attr_pairs.any?(['type', type])
end
end
end