Skip to content

Commit

Permalink
Fixed warning in package dependency (#354)
Browse files Browse the repository at this point in the history
  • Loading branch information
rajdeep authored Dec 11, 2024
1 parent 70e27ac commit 895900e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ let package = Package(
.library(name: "ProtonCore", targets: ["ProtonCore"])
],
dependencies: [
.package(name: "SnapshotTesting", url: "https://github.com/pointfreeco/swift-snapshot-testing.git", .branch("master"))
.package(url: "https://github.com/pointfreeco/swift-snapshot-testing.git",
branch: "master")
],
targets: [
.target(
Expand All @@ -43,7 +44,7 @@ let package = Package(
),
.testTarget(
name: "ProtonTests",
dependencies: ["Proton", "SnapshotTesting"],
dependencies: ["Proton", "swift-snapshot-testing"],
path: "Proton/Tests"
)
]
Expand Down

0 comments on commit 895900e

Please sign in to comment.