diff options
Diffstat (limited to 'ios/OperationsTests')
| -rw-r--r-- | ios/OperationsTests/OperationInputInjectionTests.swift | 2 |
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 } |
