Continuous Integration Fixes
This commit is contained in:
parent
0aa25d107b
commit
7fb0614db4
5 changed files with 22 additions and 16 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue