Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/PHPUnit/Unit/Translation/Loader/LoaderCacheTest.php')
-rw-r--r--tests/PHPUnit/Unit/Translation/Loader/LoaderCacheTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/PHPUnit/Unit/Translation/Loader/LoaderCacheTest.php b/tests/PHPUnit/Unit/Translation/Loader/LoaderCacheTest.php
index 9fc4f43f5a..03350e6e87 100644
--- a/tests/PHPUnit/Unit/Translation/Loader/LoaderCacheTest.php
+++ b/tests/PHPUnit/Unit/Translation/Loader/LoaderCacheTest.php
@@ -19,7 +19,7 @@ class LoaderCacheTest extends \PHPUnit\Framework\TestCase
{
public function test_shouldNotLoad_ifInCache()
{
- $cache = $this->getMock('Matomo\Cache\Lazy', array(), array(), '', false);
+ $cache = $this->getMockBuilder('Matomo\Cache\Lazy')->disableOriginalConstructor()->getMock();
$cache->expects($this->any())
->method('fetch')
->willReturn(array('translations!'));
@@ -35,7 +35,7 @@ class LoaderCacheTest extends \PHPUnit\Framework\TestCase
public function test_shouldLoad_ifNotInCache()
{
- $cache = $this->getMock('Matomo\Cache\Lazy', array(), array(), '', false);
+ $cache = $this->getMockBuilder('Matomo\Cache\Lazy')->disableOriginalConstructor()->getMock();
$cache->expects($this->any())
->method('fetch')
->willReturn(null);