We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31490fd commit 64503f4Copy full SHA for 64503f4
CoreDataQueryInterfaceTests/FilterTests.swift
@@ -89,7 +89,7 @@ class FilterTests : BaseTestCase {
89
func testNumberOfDepartmentsWithEmployeesWhoseLastNamesStartWithSUsingSubquery() {
90
let departmentCount = try! managedObjectContext.from(Department.self).filter{ department in
91
department.employees.cdqiSubquery {
92
- some($0.lastName.cdqiBeginsWith("S", options: .caseInsensitive))
+ $0.lastName.cdqiBeginsWith("S", options: .caseInsensitive).cdqiSome()
93
}.cdqiCount() > 0
94
}.count()
95
XCTAssertEqual(departmentCount, 2)
0 commit comments