summaryrefslogtreecommitdiffhomepage
path: root/ios/OperationsTests
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@mullvad.net>2023-05-22 12:06:35 +0200
committerAndrej Mihajlov <and@mullvad.net>2023-05-22 13:33:59 +0200
commitab46d1d97532e2f944cca13191dcf0eb8a625cb9 (patch)
treeb1be46f097baa24df4f417b4f44237a8a65787d2 /ios/OperationsTests
parentfe5095e666ca451992bfaa5e43e6da0773e280db (diff)
downloadmullvadvpn-ab46d1d97532e2f944cca13191dcf0eb8a625cb9.tar.xz
mullvadvpn-ab46d1d97532e2f944cca13191dcf0eb8a625cb9.zip
Reformat the code for Swift 5.8
Diffstat (limited to 'ios/OperationsTests')
-rw-r--r--ios/OperationsTests/OperationInputInjectionTests.swift2
1 files changed, 1 insertions, 1 deletions
diff --git a/ios/OperationsTests/OperationInputInjectionTests.swift b/ios/OperationsTests/OperationInputInjectionTests.swift
index 559228e348..119c699954 100644
--- a/ios/OperationsTests/OperationInputInjectionTests.swift
+++ b/ios/OperationsTests/OperationInputInjectionTests.swift
@@ -54,7 +54,7 @@ class OperationInputInjectionTests: XCTestCase {
var b: Int?
func reduce() -> Int? {
- guard let a = a, let b = b else { return nil }
+ guard let a, let b else { return nil }
return a + b
}