mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
cloud test failing due to wrong spatial type for other adapters
This commit is contained in:
@@ -8251,7 +8251,7 @@ trait DatabasesBase
|
||||
'content-type' => 'application/json',
|
||||
'x-appwrite-project' => $this->getProject()['$id'],
|
||||
], $this->getHeaders()), [
|
||||
'queries' => [Query::intersects('polyAttr', [[5.0, 5.0]])->toString()]
|
||||
'queries' => [Query::intersects('polyAttr', [5.0, 5.0])->toString()]
|
||||
]);
|
||||
$this->assertEquals(200, $response['headers']['status-code']);
|
||||
$this->assertEquals(1, $response['body']['total']);
|
||||
@@ -8262,7 +8262,7 @@ trait DatabasesBase
|
||||
'content-type' => 'application/json',
|
||||
'x-appwrite-project' => $this->getProject()['$id'],
|
||||
], $this->getHeaders()), [
|
||||
'queries' => [Query::notIntersects('polyAttr', [[60.0, 60.0]])->toString()]
|
||||
'queries' => [Query::notIntersects('polyAttr', [60.0, 60.0])->toString()]
|
||||
]);
|
||||
$this->assertEquals(200, $response['headers']['status-code']);
|
||||
$this->assertEquals(3, $response['body']['total']);
|
||||
|
||||
Reference in New Issue
Block a user