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 {
744
744
return response
745
745
}
746
746
747
- XCTAssertEqual ( response. head. status, . ok )
747
+ XCTAssertEqual ( . ok , response. head. status)
748
748
XCTAssertEqual ( " 50 " , response. head. headers. first ( name: " content-length " ) )
749
749
750
750
XCTAssertEqual ( 50 , response. totalBytes)
@@ -775,7 +775,7 @@ final class HTTPClientTests: XCTestCaseHTTPClientTestsBaseClass {
775
775
return response
776
776
}
777
777
778
- XCTAssertEqual ( response. head. status, . notFound )
778
+ XCTAssertEqual ( . notFound , response. head. status)
779
779
XCTAssertFalse ( response. head. headers. contains ( name: " content-length " ) )
780
780
781
781
XCTAssertEqual ( nil , response. totalBytes)
You can’t perform that action at this time.
0 commit comments