Skip to content

Commit

Permalink
Fixed a swift non-mutated variable warning
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitribouniol committed Nov 18, 2024
1 parent 2efa730 commit 15e88fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/AcmeSwiftTests/AccountTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ final class AccountTests: XCTestCase {
self.logger = Logger.init(label: "acme-swift-tests")
self.logger.logLevel = .trace

var config = HTTPClient.Configuration(certificateVerification: .fullVerification, backgroundActivityLogger: self.logger)
let config = HTTPClient.Configuration(certificateVerification: .fullVerification, backgroundActivityLogger: self.logger)
self.http = HTTPClient(
eventLoopGroupProvider: .singleton,
configuration: config
Expand Down

0 comments on commit 15e88fc

Please sign in to comment.