From 5299e79be08d3c3ec227489cfa78b429846fab4a Mon Sep 17 00:00:00 2001 From: Rajdeep Kwatra Date: Wed, 11 Dec 2024 21:17:45 +1100 Subject: [PATCH] Fixed warning in package dependency --- Package.swift | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Package.swift b/Package.swift index 67a7d824..1f646666 100644 --- a/Package.swift +++ b/Package.swift @@ -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( @@ -43,7 +44,7 @@ let package = Package( ), .testTarget( name: "ProtonTests", - dependencies: ["Proton", "SnapshotTesting"], + dependencies: ["Proton", "swift-snapshot-testing"], path: "Proton/Tests" ) ]