Skip to content

Commit

Permalink
Add missing import (#11)
Browse files Browse the repository at this point in the history
Motivation:

The 'GRPCCore' import was missing from the health tests.

Modifications:

- Add missing import

Result:

More correct imports
  • Loading branch information
glbrntt authored Nov 11, 2024
1 parent 15556d9 commit 7c9a904
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ let targets: [Target] = [
name: "GRPCHealthServiceTests",
dependencies: [
.target(name: "GRPCHealthService"),
.product(name: "GRPCCore", package: "grpc-swift"),
.product(name: "GRPCInProcessTransport", package: "grpc-swift"),
],
swiftSettings: defaultSwiftSettings
Expand Down
1 change: 1 addition & 0 deletions Tests/GRPCHealthServiceTests/HealthTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
* limitations under the License.
*/

import GRPCCore
import GRPCHealthService
import GRPCInProcessTransport
import XCTest
Expand Down

0 comments on commit 7c9a904

Please sign in to comment.