Skip to content

Commit 968224c

Browse files
committed
Remove swift-testing package dependency
1 parent f7584d1 commit 968224c

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

Package.swift

+2-6
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,8 @@ let package = Package(
2323
.library(name: "AWSLambdaTesting", targets: ["AWSLambdaTesting"]),
2424
],
2525
dependencies: [
26-
.package(url: "https://github.com/apple/swift-nio.git", .upToNextMajor(from: "2.72.0")),
27-
.package(url: "https://github.com/apple/swift-log.git", .upToNextMajor(from: "1.5.4")),
28-
.package(url: "https://github.com/apple/swift-testing.git", branch: "swift-DEVELOPMENT-SNAPSHOT-2024-08-29-a"),
26+
.package(url: "https://github.com/apple/swift-nio.git", from: "2.72.0"),
27+
.package(url: "https://github.com/apple/swift-log.git", from: "1.5.4"),
2928
],
3029
targets: [
3130
.target(
@@ -70,7 +69,6 @@ let package = Package(
7069
.byName(name: "AWSLambdaRuntimeCore"),
7170
.product(name: "NIOTestUtils", package: "swift-nio"),
7271
.product(name: "NIOFoundationCompat", package: "swift-nio"),
73-
.product(name: "Testing", package: "swift-testing"),
7472
],
7573
swiftSettings: [.swiftLanguageMode(.v5)]
7674
),
@@ -79,7 +77,6 @@ let package = Package(
7977
dependencies: [
8078
.byName(name: "AWSLambdaRuntimeCore"),
8179
.byName(name: "AWSLambdaRuntime"),
82-
.product(name: "Testing", package: "swift-testing"),
8380
],
8481
swiftSettings: [.swiftLanguageMode(.v5)]
8582
),
@@ -96,7 +93,6 @@ let package = Package(
9693
name: "AWSLambdaTestingTests",
9794
dependencies: [
9895
.byName(name: "AWSLambdaTesting"),
99-
.product(name: "Testing", package: "swift-testing"),
10096
]
10197
),
10298
// for perf testing

0 commit comments

Comments
 (0)