Skip to content

Commit

Permalink
Fixed HTTPResponse.description
Browse files Browse the repository at this point in the history
Probably a bad conversion to multiline string. It had a leftover `" +`
  • Loading branch information
NachoSoto committed Jun 15, 2023
1 parent dececcb commit 0f3a603
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Sources/Networking/HTTPClient/HTTPResponse.swift
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ extension HTTPResponse: CustomStringConvertible {
}()

return """
HTTPResponse(" +
statusCode: \(self.statusCode.rawValue),
body: \(body),
verification: \(self.verificationResult)
HTTPResponse(
statusCode: \(self.statusCode.rawValue),
body: \(body),
verification: \(self.verificationResult)
)
"""
}
Expand Down

0 comments on commit 0f3a603

Please sign in to comment.