Skip to content

Commit eb64950

Browse files
committed
Update deps
1 parent 754d2d6 commit eb64950

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

Package.resolved

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ let package = Package(
55
name: "DepChecker",
66
platforms: [.macOS(.v15)],
77
dependencies: [
8-
.package(url: "https://github.com/tuist/XcodeProj", exact: "8.27.3"),
9-
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.5.0"),
8+
.package(url: "https://github.com/tuist/XcodeProj", exact: "9.4.3"),
9+
.package(url: "https://github.com/apple/swift-argument-parser.git", from: "1.5.1"),
1010
.package(url: "https://github.com/ShawnBaek/Table.git", exact: "2.0.0"),
11-
.package(url: "https://github.com/nicklockwood/SwiftFormat", from: "0.55.5")
11+
.package(url: "https://github.com/nicklockwood/SwiftFormat", from: "0.56.4")
1212
],
1313
targets: [
1414
.executableTarget(

Tests/DependencyCheckerTests/DependencyCheckerTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ struct DependencyCheckerTests {}
77

88
extension DependencyCheckerTests {
99
@Test
10-
func testGotInfoInParallel_check_returnsDataWhenAllCompleted() async throws {
10+
func gotInfoInParallel_check_returnsDataWhenAllCompleted() async throws {
1111
let dependencyA: AnalyzedDependency = .any(name: "A")
1212
let expectedDependencyA = CheckedDependency(
1313
from: dependencyA,

Tests/ProjectAnalyzerTests/Analyzers/SwiftPackageAnalyzer/SwiftPackageAnalyzerIntegrationTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Testing
55

66
struct SwiftPackageAnalyzerTests {
77
@Test
8-
func testExampleResource() async throws {
8+
func exampleResource() async throws {
99
let swiftPackage = Bundle.module.path(forResource: "resources/spmProject/Package", ofType: "swift")!
1010
let swiftPackageUrl = URL(fileURLWithPath: swiftPackage)
1111

@@ -44,7 +44,7 @@ struct SwiftPackageAnalyzerTests {
4444
}
4545

4646
@Test
47-
func testWrongResource() async throws {
47+
func wrongResource() async throws {
4848
let swiftPackage = Bundle.module.path(forResource: "resources/wrongSPMProject/Package", ofType: "swift")!
4949
let swiftPackageUrl = URL(fileURLWithPath: swiftPackage)
5050

Tests/ProjectAnalyzerTests/Analyzers/XCodeAnalyzer/XCodeAnalyzerIntegrationTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Testing
55

66
struct XCodeAnalyzerIntegrationTests {
77
@Test
8-
func testExampleResource() async throws {
8+
func exampleResource() async throws {
99
let xcodeproj = Bundle.module.path(forResource: "resources/xcodeprojProject/example", ofType: "xcodeproj")!
1010
let xcodeprojUrl = URL(string: xcodeproj)!
1111

0 commit comments

Comments
 (0)