Continuous Integration Fixes

This commit is contained in:
Continuous Integration 2025-01-26 10:50:50 +00:00
parent 0aa25d107b
commit 7fb0614db4
5 changed files with 22 additions and 16 deletions

View file

@ -9,7 +9,6 @@ use Override;
use function sprintf;
final class FoodVendorControllerTest extends DbWebTest
{
private string $path = '/food/vendor/';
@ -33,11 +32,12 @@ final class FoodVendorControllerTest extends DbWebTest
'food_vendor[name]' => 'TestingNew',
]);
$newVendor = $this->repository->findOneBy(['name' => 'TestingNew']);
$newVendor = $this->repository->findOneBy([
'name' => 'TestingNew',
]);
$this->assertInstanceof(FoodVendor::class, $newVendor);
self::assertSame(1, $this->repository->count([]));
}
public function testShow(): void