Continuous Integration Fixes
All checks were successful
/ ls (push) Successful in 2m17s
/ ls (release) Successful in 54s

This commit is contained in:
Continuous Integration 2024-09-23 17:11:33 +00:00
parent 80758abd60
commit ee5d515ac1

View file

@ -87,8 +87,9 @@ final class MenuItemControllerTest extends DbWebTest
$this->manager->persist($this->vendor); $this->manager->persist($this->vendor);
$this->manager->persist($menuItem); $this->manager->persist($menuItem);
$order = new FoodOrder(); $order = new FoodOrder;
$order->setFoodVendor($this->vendor); $order->setFoodVendor($this->vendor);
$this->manager->persist($order); $this->manager->persist($order);
$this->manager->flush(); $this->manager->flush();
$this->assertFalse($menuItem->isDeleted()); $this->assertFalse($menuItem->isDeleted());
@ -101,7 +102,9 @@ final class MenuItemControllerTest extends DbWebTest
$this->assertTrue($menuItem->isDeleted()); $this->assertTrue($menuItem->isDeleted());
$crawler = $this->client->request('GET', '/order/item/new/' . $order->getId()); $crawler = $this->client->request('GET', '/order/item/new/' . $order->getId());
$count = $crawler->filter('body > main:nth-child(2) > div:nth-child(5)')->children()->count(); $count = $crawler->filter('body > main:nth-child(2) > div:nth-child(5)')
->children()
->count();
$this->assertSame(0, $count); $this->assertSame(0, $count);
$this->assertResponseIsSuccessful(); $this->assertResponseIsSuccessful();