Skip to content

Commit

Permalink
gardening
Browse files Browse the repository at this point in the history
  • Loading branch information
swhitty committed Nov 24, 2023
1 parent 8158cc0 commit 908150b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions FlyingFox/Tests/MultipartForm/FormDataSequenceTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,10 @@ private extension FormData {
static func make(
headers: [FormHeader: String] = [:],
body: String = ""
) ->Self {
FormData(headers: headers, body: body.data(using: .utf8)!)
) -> Self {
FormData(
headers: headers,
body: body.data(using: .utf8)!
)
}
}

0 comments on commit 908150b

Please sign in to comment.