Skip to content

Commit 6b46bcd

Browse files
committed
Post merge conflict cleanup
1 parent 8a752fa commit 6b46bcd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/App/Core/Dependencies/EnvironmentClient.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ struct EnvironmentClient {
4949
var plausibleBackendReportingSiteID: @Sendable () -> String?
5050
var processingBuildBacklog: @Sendable () -> Bool = { XCTFail("processingBuildBacklog"); return false }
5151
var random: @Sendable (_ range: ClosedRange<Double>) -> Double = { XCTFail("random"); return Double.random(in: $0) }
52-
var runnerIds: @Sendable () -> [String] = { XCTFail("runnerIds"); return [] }
5352

5453
enum FailureMode: String {
5554
case fetchMetadataFailed
@@ -60,6 +59,7 @@ struct EnvironmentClient {
6059
case repositorySaveUniqueViolation
6160
}
6261
var redisHostname: @Sendable () -> String = { "redis" }
62+
var runnerIds: @Sendable () -> [String] = { XCTFail("runnerIds"); return [] }
6363
var shouldFail: @Sendable (_ failureMode: FailureMode) -> Bool = { _ in XCTFail("shouldFail"); return false }
6464
var siteURL: @Sendable () -> String = { XCTFail("siteURL"); return "" }
6565
}

0 commit comments

Comments
 (0)