Skip to content

Commit 04ac6ca

Browse files
corrected the syntax of swift56 tests
1 parent 43f28fe commit 04ac6ca

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/languages/swift/Tests.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -206,10 +206,10 @@ class Tests: XCTestCase {
206206
print(Query.notOverlaps("location", values: [40.7128, -74]))
207207
print(Query.touches("location", values: [40.7128, -74]))
208208
print(Query.notTouches("location", values: [40.7128, -74]))
209-
print(Query.contains("location", values: [[40.7128, -74],[40.7128, -74]]))
210-
print(Query.notContains("location", values: [[40.7128, -74],[40.7128, -74]]))
211-
print(Query.equal("location", values: [[40.7128, -74],[40.7128, -74]]))
212-
print(Query.notEqual("location", values: [[40.7128, -74],[40.7128, -74]]))
209+
print(Query.contains("location", value: [[40.7128, -74],[40.7128, -74]]))
210+
print(Query.notContains("location", value: [[40.7128, -74],[40.7128, -74]]))
211+
print(Query.equal("location", value: [[40.7128, -74],[40.7128, -74]]))
212+
print(Query.notEqual("location", value: [[40.7128, -74],[40.7128, -74]]))
213213

214214
print(Query.or(
215215
[Query.equal("released", value: true), Query.lessThan("releasedYear", value: 1990)]

0 commit comments

Comments
 (0)