1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 16:14:03 +00:00

assertArraySubset() is deprecated

This commit is contained in:
Samuel Štancl 2019-02-27 17:39:39 +01:00
parent 2ebf4d516f
commit d527191b89
2 changed files with 6 additions and 1 deletions

View file

@ -7,7 +7,7 @@ class CacheManagerTest extends TestCase
/** @test */
public function default_tag_is_automatically_applied()
{
$this->assertArraySubset([config('tenancy.cache.tag_base') . tenant('uuid')], cache()->tags('foo')->getTags()->getNames());
$this->assertArrayIsSubset([config('tenancy.cache.tag_base') . tenant('uuid')], cache()->tags('foo')->getTags()->getNames());
}
/** @test */