Skip to content

Commit 44e1704

Browse files
committed
All tests
1 parent 5fa32aa commit 44e1704

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

src/Database/Database.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5796,9 +5796,11 @@ public function deleteDocuments(
57965796
* @var array<Document> $batch
57975797
*/
57985798

5799-
$batch = $this->silent(fn () => $this->withCursor($last,
5799+
$batch = $this->silent(fn () => $this->withCursor(
5800+
$last,
58005801
fn () => $this->find(
5801-
$collection->getId(), array_merge($new, $queries),
5802+
$collection->getId(),
5803+
array_merge($new, $queries),
58025804
forPermission: Database::PERMISSION_DELETE
58035805
)
58045806
));

tests/e2e/Adapter/Base.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
abstract class Base extends TestCase
1919
{
20-
//use CollectionTests;
20+
use CollectionTests;
2121
use DocumentTests;
2222
use AttributeTests;
2323
use IndexTests;

0 commit comments

Comments
 (0)