@@ -4316,7 +4316,7 @@ final class HTTPClientTests: XCTestCaseHTTPClientTestsBaseClass {
4316
4316
// be easy to miss.
4317
4317
var config = HTTPClient . Configuration (
4318
4318
http1_1ConnectionDebugInitializer: { channel in
4319
- return connectionDebugInitializerUtil. initialize ( channel: channel)
4319
+ connectionDebugInitializerUtil. initialize ( channel: channel)
4320
4320
}
4321
4321
)
4322
4322
config. httpVersion = . http1Only
@@ -4394,10 +4394,10 @@ final class HTTPClientTests: XCTestCaseHTTPClientTestsBaseClass {
4394
4394
// properties. This is necessary as these parameters are defaulted and can be easy to miss.
4395
4395
var config = HTTPClient . Configuration (
4396
4396
http2ConnectionDebugInitializer: { channel in
4397
- return connectionDebugInitializerUtil. initialize ( channel: channel)
4397
+ connectionDebugInitializerUtil. initialize ( channel: channel)
4398
4398
} ,
4399
4399
http2StreamChannelDebugInitializer: { channel in
4400
- return streamChannelDebugInitializerUtil. initialize ( channel: channel)
4400
+ streamChannelDebugInitializerUtil. initialize ( channel: channel)
4401
4401
}
4402
4402
)
4403
4403
config. tlsConfiguration = . clientDefault
@@ -4471,7 +4471,7 @@ final class CountingDebugInitializerUtil: Sendable {
4471
4471
self . _executionCount. withLockedValue { $0 += 1 }
4472
4472
4473
4473
let someScheduledTask = channel. eventLoop. scheduleTask ( in: Self . duration) {
4474
- return channel. eventLoop. makeSucceededVoidFuture ( )
4474
+ channel. eventLoop. makeSucceededVoidFuture ( )
4475
4475
}
4476
4476
4477
4477
return someScheduledTask. futureResult. flatMap { $0 }
0 commit comments