Skip to content

Commit

Permalink
space housekeep fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nekufa committed Apr 26, 2024
1 parent 409e165 commit 398c204
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/MapperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public function testSpaces()
$mapper = $this->createMapper();

foreach ($mapper->find('_vspace') as $space) {
if ($space['id'] > 512) {
if ($space['id'] >= 512) {
$mapper->getSpace($space['id'])->drop();
}
}
Expand Down

0 comments on commit 398c204

Please sign in to comment.