summaryrefslogtreecommitdiffhomepage
path: root/ios/OperationsTests
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@mullvad.net>2023-05-22 13:34:32 +0200
committerAndrej Mihajlov <and@mullvad.net>2023-05-22 13:34:32 +0200
commitd6ecc3f4770541eeb2e7fdf0b7361411ab218b97 (patch)
treeb1be46f097baa24df4f417b4f44237a8a65787d2 /ios/OperationsTests
parent0bdc3c98ecd39ce738307dc9fda254af4ddf0c41 (diff)
parentab46d1d97532e2f944cca13191dcf0eb8a625cb9 (diff)
downloadmullvadvpn-d6ecc3f4770541eeb2e7fdf0b7361411ab218b97.tar.xz
mullvadvpn-d6ecc3f4770541eeb2e7fdf0b7361411ab218b97.zip
Merge branch 'swiftformat-increase-swiftversion'
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
}