another rubocop, anoter linting hel...

This commit is contained in:
HoneyryderChuck 2022-07-01 18:39:51 +01:00
parent 2935724a16
commit da9993f7e0
2 changed files with 7 additions and 7 deletions

View File

@ -145,12 +145,12 @@ module HTTPX
"#{super}\n\n" \
"SSL connection using #{@io.ssl_version} / #{Array(@io.cipher).first}\n" \
"ALPN, server accepted to use #{protocol}\n" \
"Server certificate:\n" \
" subject: #{server_cert.subject}\n" \
" start date: #{server_cert.not_before}\n" \
" expire date: #{server_cert.not_after}\n" \
" issuer: #{server_cert.issuer}\n" \
" SSL certificate verify ok."
"Server certificate:\n " \
"subject: #{server_cert.subject}\n " \
"start date: #{server_cert.not_before}\n " \
"expire date: #{server_cert.not_after}\n " \
"issuer: #{server_cert.issuer}\n " \
"SSL certificate verify ok."
end
end
end

View File

@ -56,7 +56,7 @@ module HTTPX
# :nocov:
def inspect
"#<Response:#{object_id} "\
"#<Response:#{object_id} " \
"HTTP/#{version} " \
"@status=#{@status} " \
"@headers=#{@headers} " \