Remove property that was only used once

This commit is contained in:
Sami Samhuri 2021-01-07 13:46:35 -08:00
parent 3f17ecb3af
commit a0789e95da
No known key found for this signature in database
GPG key ID: 4B4195422742FC16

View file

@ -18,11 +18,10 @@ func AssertStringDataEqual(_ expression1: @autoclosure () throws -> Data, _ expr
}
class MultipartFormEncoderTests: XCTestCase {
var boundary = "SuperAwesomeBoundary"
var subject: MultipartFormEncoder!
override func setUpWithError() throws {
subject = MultipartFormEncoder(boundary: boundary)
subject = MultipartFormEncoder(boundary: "SuperAwesomeBoundary")
}
override func tearDownWithError() throws {