#21 add planned closing time to food order
All checks were successful
/ ls (pull_request) Successful in 31s
/ ls (push) Successful in 31s

This commit is contained in:
lubiana 2024-06-27 17:14:59 +02:00
parent 634f13d968
commit b479fbf5ed
No known key found for this signature in database
5 changed files with 11 additions and 3 deletions

View file

@ -39,6 +39,7 @@ final class OrderItemControllerTest extends DbWebTest
$this->manager->persist($this->menuItem);
$this->manager->flush();
$this->menuItemRepository = static::getContainer()->get(MenuItemRepository::class);
}

View file

@ -27,6 +27,7 @@ abstract class DbWebTest extends WebTestCase
->getAllMetadata();
$schemaTool->dropDatabase();
$schemaTool->updateSchema($metadata);
$this->repository = $this->manager->getRepository($this->getEntityClass());
}
}