Continuous Integration Fixes
This commit is contained in:
parent
80758abd60
commit
ee5d515ac1
1 changed files with 5 additions and 2 deletions
|
@ -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();
|
||||||
|
|
Loading…
Reference in a new issue