Skip to content

Commit

Permalink
Correctly reference test dependency in package manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
aataraxiaa committed Aug 28, 2024
1 parent 71be6ef commit 020a4f7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions LocalPackages/Freemium/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,14 @@ let package = Package(
name: "Freemium",
dependencies: [
.product(name: "Subscription", package: "BrowserServicesKit"),
.product(name: "SubscriptionTestingUtilities", package: "BrowserServicesKit"),
]
),
.testTarget(
name: "FreemiumTests",
dependencies: ["Freemium"]),
dependencies: [
"Freemium",
.product(name: "SubscriptionTestingUtilities", package: "BrowserServicesKit")
]
),
]
)

0 comments on commit 020a4f7

Please sign in to comment.