@@ -58,7 +58,7 @@ import Vapor
5858 }
5959
6060 @Test func analyze_refreshCheckout_failed( ) async throws {
61- try await withApp ( setup, defaultDependencies, capturingLogger) { app in
61+ try await withApp ( setup, defaultDependencies, logHandler : capturingLogger) { app in
6262 try await withDependencies {
6363 $0. environment. loadSPIManifest = { _ in nil }
6464 $0. fileManager. fileExists = { @Sendable _ in true }
@@ -90,7 +90,7 @@ import Vapor
9090 }
9191
9292 @Test func analyze_updateRepository_invalidPackageCachePath( ) async throws {
93- try await withApp ( setup, defaultDependencies, capturingLogger) { app in
93+ try await withApp ( setup, defaultDependencies, logHandler : capturingLogger) { app in
9494 try await withDependencies {
9595 $0. environment. loadSPIManifest = { _ in nil }
9696 $0. fileManager. fileExists = { @Sendable _ in true }
@@ -118,7 +118,7 @@ import Vapor
118118 }
119119
120120 @Test func analyze_getPackageInfo_gitCheckout_error( ) async throws {
121- try await withApp ( setup, defaultDependencies, capturingLogger) { app in
121+ try await withApp ( setup, defaultDependencies, logHandler : capturingLogger) { app in
122122 try await withDependencies {
123123 $0. environment. loadSPIManifest = { _ in nil }
124124 $0. fileManager. fileExists = { @Sendable _ in true }
@@ -147,7 +147,7 @@ import Vapor
147147 }
148148
149149 @Test func analyze_dumpPackage_missing_manifest( ) async throws {
150- try await withApp ( setup, defaultDependencies, capturingLogger) { app in
150+ try await withApp ( setup, defaultDependencies, logHandler : capturingLogger) { app in
151151 try await withDependencies {
152152 $0. environment. loadSPIManifest = { _ in nil }
153153 $0. fileManager. fileExists = { @Sendable path in
0 commit comments