Skip to content

Commit 0a8f061

Browse files
committed
Fix count check
1 parent 4d2397d commit 0a8f061

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/e2e/Adapter/Base.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16838,7 +16838,7 @@ public function testDeleteBulkDocuments(): void
1683816838
}
1683916839

1684016840
$docs = static::getDatabase()->find('bulk_delete');
16841-
$this->assertEquals(5, $docs);
16841+
$this->assertEquals(5, \count($docs));
1684216842

1684316843
// TEST (FAIL): Can't delete documents in the past
1684416844
$oneHourAgo = (new \DateTime())->sub(new \DateInterval('PT1H'));

0 commit comments

Comments
 (0)