|
|
@@ -173,7 +173,7 @@ class LocalStorageTest extends TestCase
|
|
|
->willReturn('crop_sm');
|
|
|
|
|
|
$file = $this->getMockBuilder(File::class)->getMock();
|
|
|
- $file->method('getPath')->willReturn('abc');
|
|
|
+ $file->method('getSlug')->willReturn('abc');
|
|
|
$file->method('getConfig')->willReturn('xyz');
|
|
|
|
|
|
$this->cacheManager
|
|
|
@@ -202,7 +202,7 @@ class LocalStorageTest extends TestCase
|
|
|
->willReturn('crop_sm');
|
|
|
|
|
|
$file = $this->getMockBuilder(File::class)->getMock();
|
|
|
- $file->method('getPath')->willReturn('abc');
|
|
|
+ $file->method('getSlug')->willReturn('abc');
|
|
|
$file->method('getConfig')->willReturn('xyz');
|
|
|
|
|
|
$this->cacheManager
|
|
|
@@ -236,7 +236,7 @@ class LocalStorageTest extends TestCase
|
|
|
->willReturn('crop_sm');
|
|
|
|
|
|
$file = $this->getMockBuilder(File::class)->getMock();
|
|
|
- $file->method('getPath')->willReturn('abc');
|
|
|
+ $file->method('getSlug')->willReturn('abc');
|
|
|
$file->method('getConfig')->willReturn('xyz');
|
|
|
|
|
|
$this->cacheManager
|
|
|
@@ -270,7 +270,7 @@ class LocalStorageTest extends TestCase
|
|
|
->willReturn('crop_sm');
|
|
|
|
|
|
$file = $this->getMockBuilder(File::class)->getMock();
|
|
|
- $file->method('getPath')->willReturn('abc');
|
|
|
+ $file->method('getSlug')->willReturn('abc');
|
|
|
$file->method('getConfig')->willReturn('xyz');
|
|
|
|
|
|
$this->cacheManager
|
|
|
@@ -309,7 +309,7 @@ class LocalStorageTest extends TestCase
|
|
|
->willReturn('crop_sm');
|
|
|
|
|
|
$file = $this->getMockBuilder(File::class)->getMock();
|
|
|
- $file->method('getPath')->willReturn('abc');
|
|
|
+ $file->method('getSlug')->willReturn('abc');
|
|
|
$file->method('getConfig')->willReturn('xyz');
|
|
|
|
|
|
$this->cacheManager
|