diff --git a/spec/ezclient_spec.rb b/spec/ezclient_spec.rb
index 6935c3a..daa6ac5 100644
--- a/spec/ezclient_spec.rb
+++ b/spec/ezclient_spec.rb
@@ -399,9 +399,11 @@ def self.sign!(*); end
# - see request (@http_request.host)
# - see request.verb
# - see request.url
+ # rubocop:disable Layout/LineEndStringConcatenationIndentation
+ # rubocop:disable Style/TrailingCommaInArguments
expect(response.inspect).to eq(
"{:req=>{" \
- ":raw=>\"#\", "\
+ ":raw=>\"#\", " \
":hdrs=>#\"ezclient/#{EzClient::VERSION}\", " \
"\"Connection\"=>\"close\", " \
@@ -411,6 +413,8 @@ def self.sign!(*); end
":hdrs=>#, " \
":body=>\"\"}}"
)
+ # rubocop:enable Layout/LineEndStringConcatenationIndentation
+ # rubocop:enable Style/TrailingCommaInArguments
end
end
end