Skip to content

Commit 31f9194

Browse files
committed
update tests for SE-0110
1 parent 36bf816 commit 31f9194

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

TestFoundation/TestNSCompoundPredicate.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ class TestNSCompoundPredicate: XCTestCase {
9292
var shortCircuited = true
9393

9494
let bOK = Predicate(value: false)
95-
let bDontEval = Predicate(block: { _ in
95+
let bDontEval = Predicate(block: { _, _ in
9696
shortCircuited = false
9797
return true
9898
})
@@ -106,7 +106,7 @@ class TestNSCompoundPredicate: XCTestCase {
106106
var shortCircuited = true
107107

108108
let bOK = Predicate(value: true)
109-
let bDontEval = Predicate(block: { _ in
109+
let bDontEval = Predicate(block: { _, _ in
110110
shortCircuited = false
111111
return true
112112
})

0 commit comments

Comments
 (0)