From a0789e95daff7ef4176fb81d3ecbe66375a0295e Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Thu, 7 Jan 2021 13:46:35 -0800 Subject: [PATCH] Remove property that was only used once --- Tests/OsirisTests/MultipartFormEncoderTests.swift | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Tests/OsirisTests/MultipartFormEncoderTests.swift b/Tests/OsirisTests/MultipartFormEncoderTests.swift index 795e413..25a6ab5 100644 --- a/Tests/OsirisTests/MultipartFormEncoderTests.swift +++ b/Tests/OsirisTests/MultipartFormEncoderTests.swift @@ -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 {