Skip to content

Commit

Permalink
Include the package name of the test dependencies (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
Widcket authored Jun 4, 2021
1 parent 3985f68 commit d3762f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.0
// swift-tools-version:5.2

import PackageDescription

Expand All @@ -10,8 +10,8 @@ let package = Package(
targets: ["JWTDecode"])
],
dependencies: [
.package(url: "https://github.com/Quick/Quick.git", .upToNextMajor(from: "3.0.0")),
.package(url: "https://github.com/Quick/Nimble.git", .upToNextMajor(from: "9.0.0"))
.package(name: "Quick", url: "https://github.com/Quick/Quick.git", .upToNextMajor(from: "3.0.0")),
.package(name: "Nimble", url: "https://github.com/Quick/Nimble.git", .upToNextMajor(from: "9.0.0"))
],
targets: [
.target(
Expand Down

0 comments on commit d3762f0

Please sign in to comment.