Fix tests

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl 2017-09-12 09:47:38 +02:00
parent 8391ca8792
commit 81ef116bfb
No known key found for this signature in database
GPG Key ID: 4C614C6ED2CDE6DF
1 changed files with 1 additions and 6 deletions

View File

@ -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')