diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-11-12 11:00:56 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2018-11-12 11:00:56 +0100 |
commit | 26b160cc439d0d3396fe54ee7222a0642bfbd022 (patch) | |
tree | ebc7693536646e8d30b845f29eda3c4afd4a01f1 /tests | |
parent | d6de8ebeb272d677a4bf1930c6eb42c1bf57b844 (diff) | |
download | nextcloud-server-26b160cc439d0d3396fe54ee7222a0642bfbd022.tar.gz nextcloud-server-26b160cc439d0d3396fe54ee7222a0642bfbd022.zip |
Make sure to always load the latest icons-vars.css file
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/Template/IconsCacherTest.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/lib/Template/IconsCacherTest.php b/tests/lib/Template/IconsCacherTest.php index c537323e0eb..cc6224f3228 100644 --- a/tests/lib/Template/IconsCacherTest.php +++ b/tests/lib/Template/IconsCacherTest.php @@ -28,6 +28,7 @@ use OC\Files\AppData\AppData; use OC\Files\AppData\Factory; use OC\Template\IconsCacher; use OCA\Theming\ThemingDefaults; +use OCP\AppFramework\Utility\ITimeFactory; use OCP\Files\IAppData; use OCP\Files\NotFoundException; use OCP\Files\SimpleFS\ISimpleFile; @@ -46,10 +47,13 @@ class IconsCacherTest extends \Test\TestCase { protected $appData; /** @var IURLGenerator|\PHPUnit_Framework_MockObject_MockObject */ protected $urlGenerator; + /** @var ITimeFactory|\PHPUnit_Framework_MockObject_MockObject */ + private $timeFactory; protected function setUp() { $this->logger = $this->createMock(ILogger::class); $this->appData = $this->createMock(AppData::class); + $this->timeFactory = $this->createMock(ITimeFactory::class); /** @var Factory|\PHPUnit_Framework_MockObject_MockObject $factory */ $factory = $this->createMock(Factory::class); @@ -63,7 +67,8 @@ class IconsCacherTest extends \Test\TestCase { $this->iconsCacher = new IconsCacher( $this->logger, $factory, - $this->urlGenerator + $this->urlGenerator, + $this->timeFactory ); } |