Skip to content

Commit 7c9a904

Browse files
authored
Add missing import (#11)
Motivation: The 'GRPCCore' import was missing from the health tests. Modifications: - Add missing import Result: More correct imports
1 parent 15556d9 commit 7c9a904

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

Package.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ let targets: [Target] = [
7272
name: "GRPCHealthServiceTests",
7373
dependencies: [
7474
.target(name: "GRPCHealthService"),
75+
.product(name: "GRPCCore", package: "grpc-swift"),
7576
.product(name: "GRPCInProcessTransport", package: "grpc-swift"),
7677
],
7778
swiftSettings: defaultSwiftSettings

Tests/GRPCHealthServiceTests/HealthTests.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17+
import GRPCCore
1718
import GRPCHealthService
1819
import GRPCInProcessTransport
1920
import XCTest

0 commit comments

Comments
 (0)