diff options
Diffstat (limited to 'apps/theming/tests/ThemingDefaultsTest.php')
-rw-r--r-- | apps/theming/tests/ThemingDefaultsTest.php | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/apps/theming/tests/ThemingDefaultsTest.php b/apps/theming/tests/ThemingDefaultsTest.php index b1d86bff432..abd85a612c9 100644 --- a/apps/theming/tests/ThemingDefaultsTest.php +++ b/apps/theming/tests/ThemingDefaultsTest.php @@ -623,15 +623,10 @@ class ThemingDefaultsTest extends TestCase { /** @dataProvider dataReplaceImagePath */ public function testReplaceImagePath($app, $image, $result = 'themingRoute?v=0') { - $cache = $this->createMock(ICache::class); - $cache->expects($this->any()) + $this->cache->expects($this->any()) ->method('get') ->with('shouldReplaceIcons') ->willReturn(true); - $this->cacheFactory->expects($this->any()) - ->method('create') - ->with('theming') - ->willReturn($cache); $this->config ->expects($this->any()) ->method('getAppValue') |