Renamed Storelocation entity to StorageLocation

This commit is contained in:
Jan Böhmer 2023-09-04 22:57:40 +02:00
parent 09acca950d
commit 0af5a58dbe
59 changed files with 218 additions and 176 deletions

View file

@ -22,7 +22,7 @@ declare(strict_types=1);
namespace App\Tests\Controller\AdminPages;
use App\Entity\Parts\Storelocation;
use App\Entity\Parts\StorageLocation;
/**
* @group slow
@ -31,5 +31,5 @@ use App\Entity\Parts\Storelocation;
class StorelocationControllerTest extends AbstractAdminControllerTest
{
protected static string $base_path = '/en/store_location';
protected static string $entity_class = Storelocation::class;
protected static string $entity_class = StorageLocation::class;
}