File tree
Expand file treeCollapse file tree3 files changed
+13
-0
lines changed Tests/OpenAPIAsyncHTTPClientTests
Expand file treeCollapse file tree3 files changed
+13
-0
lines changed Original file line number | Diff line number | Diff line change |
---|
|
| 1 | +**Package.swift |
Original file line number | Diff line number | Diff line change |
---|
@@ -50,3 +50,14 @@ let package = Package(
|
50 | 50 | ),
|
51 | 51 | ]
|
52 | 52 | )
|
| 53 | + |
| 54 | +// --- STANDARD CROSS-REPO SETTINGS DO NOT EDIT --- // |
| 55 | +for target in package.targets { |
| 56 | +if target.type != .plugin { |
| 57 | +var settings = target.swiftSettings ?? [] |
| 58 | +// https://.com/swiftlang/swift-evolution/blob/main/proposals/0444-member-import-visibility.md |
| 59 | +settings.append(.enableUpcomingFeature("MemberImportVisibility")) |
| 60 | +target.swiftSettings = settings |
| 61 | +} |
| 62 | +} |
| 63 | +// --- END: STANDARD CROSS-REPO SETTINGS DO NOT EDIT --- // |
Original file line number | Diff line number | Diff line change |
---|
|
14 | 14 | import XCTest
|
15 | 15 | import OpenAPIRuntime
|
16 | 16 | import NIOCore
|
| 17 | +import NIOHTTP1 |
17 | 18 | import NIOPosix
|
18 | 19 | import AsyncHTTPClient
|
19 | 20 | @testable import OpenAPIAsyncHTTPClient
|
|
You can’t perform that action at this time.
0 commit comments