Skip to content
Prev Previous commit
Next Next commit
soundness
  • Loading branch information
dkz2 committed Oct 11, 2023
commit 6e2373ec94f325187601a0cfa7977557cfe40877
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ let benchmarks = {
}

group.cancelAll()

}
}
}
7 changes: 4 additions & 3 deletions Benchmarks/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ let package = Package(
name: "Benchmarks"),
.testTarget(
name: "BenchmarksTests",
dependencies: ["Benchmarks"]),
dependencies: ["Benchmarks"]
),
]
)
// Benchmark of MemcacheBenchmarks
Expand All @@ -45,7 +46,7 @@ package.targets += [
],
path: "Benchmarks/MemcacheBenchmarks",
plugins: [
.plugin(name: "BenchmarkPlugin", package: "package-benchmark")
.plugin(name: "BenchmarkPlugin", package: "package-benchmark"),
]
),
]
]
2 changes: 1 addition & 1 deletion Benchmarks/Tests/BenchmarksTests/BenchmarksTests.swift
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same here

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import XCTest
@testable import Benchmarks
import XCTest

final class BenchmarksTests: XCTestCase {
func testExample() throws {
Expand Down