Skip to content

Commit 895900e

Browse files
authored
Fixed warning in package dependency (#354)
1 parent 70e27ac commit 895900e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Package.swift

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ let package = Package(
2828
.library(name: "ProtonCore", targets: ["ProtonCore"])
2929
],
3030
dependencies: [
31-
.package(name: "SnapshotTesting", url: "https://github.com/pointfreeco/swift-snapshot-testing.git", .branch("master"))
31+
.package(url: "https://github.com/pointfreeco/swift-snapshot-testing.git",
32+
branch: "master")
3233
],
3334
targets: [
3435
.target(
@@ -43,7 +44,7 @@ let package = Package(
4344
),
4445
.testTarget(
4546
name: "ProtonTests",
46-
dependencies: ["Proton", "SnapshotTesting"],
47+
dependencies: ["Proton", "swift-snapshot-testing"],
4748
path: "Proton/Tests"
4849
)
4950
]

0 commit comments

Comments
 (0)