Skip to content

Commit 63616ca

Browse files
authored
Include the package name of the test dependencies (#671)
1 parent 06f7264 commit 63616ca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ let package = Package(
1111
],
1212
dependencies: [
1313
.package(name: "Auth0", url: "https://github.com/auth0/Auth0.swift.git", .upToNextMajor(from: "1.31.0")),
14-
.package(url: "https://github.com/Quick/Quick.git", .upToNextMajor(from: "3.0.0")),
15-
.package(url: "https://github.com/Quick/Nimble.git", .upToNextMajor(from: "9.0.0")),
16-
.package(url: "https://github.com/AliSoftware/OHHTTPStubs.git", .upToNextMajor(from: "9.0.0"))
14+
.package(name: "Quick", url: "https://github.com/Quick/Quick.git", .upToNextMajor(from: "3.0.0")),
15+
.package(name: "Nimble", url: "https://github.com/Quick/Nimble.git", .upToNextMajor(from: "9.0.0")),
16+
.package(name: "OHHTTPStubs", url: "https://github.com/AliSoftware/OHHTTPStubs.git", .upToNextMajor(from: "9.0.0"))
1717
],
1818
targets: [
1919
.target(

0 commit comments

Comments
 (0)