1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 15:34:03 +00:00

Update test name

This commit is contained in:
lukinovec 2023-01-05 16:45:25 +01:00
parent 5ea5299ed1
commit 507df55b4c

View file

@ -152,7 +152,7 @@ test('cache base prefix is customizable', function () {
->toBe(app('cache.store')->getPrefix()); ->toBe(app('cache.store')->getPrefix());
}); });
test('prefix separate cache well enough using CacheManager dependency injection', function () { test('cache is prefixed correctly when using a repository injected in a singleton', function () {
$this->app->singleton(CacheService::class); $this->app->singleton(CacheService::class);
app()->make(CacheService::class)->handle(); app()->make(CacheService::class)->handle();