Skip to content

Commit a413b77

Browse files
authored
Work around Foundation revert even more (#822)
Since #813, Foundation have backported their revert to 6.1. Now only 6.0 is the weird one.
1 parent f9fb26f commit a413b77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/AsyncHTTPClientTests/HTTPClientTests.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ final class HTTPClientTests: XCTestCaseHTTPClientTestsBaseClass {
4646

4747
let request3 = try Request(url: "unix:///tmp/file")
4848
XCTAssertEqual(request3.host, "")
49-
#if os(Linux) && compiler(>=6.0) && compiler(<6.2)
49+
#if os(Linux) && compiler(>=6.0) && compiler(<6.1)
5050
XCTAssertEqual(request3.url.host, "")
5151
#else
5252
XCTAssertNil(request3.url.host)

0 commit comments

Comments
 (0)