lint
All checks were successful
/ ls (pull_request) Successful in 37s
/ ls (push) Successful in 35s

This commit is contained in:
lubiana 2024-08-16 11:15:23 +02:00
parent 6f23c3c1b7
commit 2a28465626
No known key found for this signature in database
3 changed files with 6 additions and 12 deletions

View file

@ -192,7 +192,6 @@ final class FoodOrderControllerTest extends DbWebTest
$this->manager->persist($order);
$this->manager->flush();
$this->client->request('GET', sprintf('%s%s/open', $this->path, $order->getId()));
self::assertResponseRedirects("{$this->path}{$order->getId()}");
$openOrder = $this->repository->find($order->getId());
@ -209,7 +208,6 @@ final class FoodOrderControllerTest extends DbWebTest
$this->manager->persist($order);
$this->manager->flush();
$this->client->request('GET', sprintf('%s%s/close', $this->path, $order->getId()));
self::assertResponseRedirects("{$this->path}{$order->getId()}");
$openOrder = $this->repository->find($order->getId());