Signed-off-by: Julius Härtl <jus@bitgrid.net>
pull/6451/head
Julius Härtl 8 years ago
parent 8391ca8792
commit 81ef116bfb
No known key found for this signature in database
GPG Key ID: 4C614C6ED2CDE6DF
  1. 7
      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')

Loading…
Cancel
Save