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/proxy/index.php')
-rw-r--r--tests/PHPUnit/proxy/index.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/PHPUnit/proxy/index.php b/tests/PHPUnit/proxy/index.php
index ce08221128..12f5e0b2a9 100644
--- a/tests/PHPUnit/proxy/index.php
+++ b/tests/PHPUnit/proxy/index.php
@@ -5,6 +5,7 @@
*/
// make sure the test environment is loaded
+use Piwik\Tracker\Cache;
use Piwik\Visualization\Cloud;
// Wrapping the request inside ob_start() calls to ensure that the Test
@@ -25,7 +26,7 @@ Piwik_TestingEnvironment::addHooks();
Cloud::$debugDisableShuffle = true;
\Piwik\Tracker::setTestEnvironment();
-Piwik_Tracker_Cache::deleteTrackerCache();
+Cache::deleteTrackerCache();
// Disable index.php dispatch since we do it manually below
define('PIWIK_ENABLE_DISPATCH', false);