summaryrefslogtreecommitdiffstats
path: root/tests/lib/Template/SCSSCacherTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/Template/SCSSCacherTest.php')
-rw-r--r--tests/lib/Template/SCSSCacherTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/Template/SCSSCacherTest.php b/tests/lib/Template/SCSSCacherTest.php
index d84b96773bc..d4d60c2dc1b 100644
--- a/tests/lib/Template/SCSSCacherTest.php
+++ b/tests/lib/Template/SCSSCacherTest.php
@@ -528,10 +528,10 @@ class SCSSCacherTest extends \Test\TestCase {
->willReturn([$file]);
$cache = $this->createMock(ICache::class);
- $this->cacheFactory->expects($this->once())
+ $this->cacheFactory->expects($this->exactly(2))
->method('createDistributed')
->willReturn($cache);
- $cache->expects($this->once())
+ $cache->expects($this->exactly(2))
->method('clear')
->with('');
$this->appData->expects($this->once())