File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Tests/AsyncHTTPClientTests Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -744,7 +744,7 @@ final class HTTPClientTests: XCTestCaseHTTPClientTestsBaseClass {
744744 return response
745745 }
746746
747- XCTAssertEqual ( response. head. status, . ok )
747+ XCTAssertEqual ( . ok , response. head. status)
748748 XCTAssertEqual ( " 50 " , response. head. headers. first ( name: " content-length " ) )
749749
750750 XCTAssertEqual ( 50 , response. totalBytes)
@@ -775,7 +775,7 @@ final class HTTPClientTests: XCTestCaseHTTPClientTestsBaseClass {
775775 return response
776776 }
777777
778- XCTAssertEqual ( response. head. status, . notFound )
778+ XCTAssertEqual ( . notFound , response. head. status)
779779 XCTAssertFalse ( response. head. headers. contains ( name: " content-length " ) )
780780
781781 XCTAssertEqual ( nil , response. totalBytes)
You can’t perform that action at this time.
0 commit comments