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:
authormattab <matthieu.aubry@gmail.com>2013-07-20 10:39:01 +0400
committermattab <matthieu.aubry@gmail.com>2013-07-20 10:39:01 +0400
commite492c76009ea81c9513ae359f5fd41e84703116f (patch)
tree67b0f9006616d5f093447af6f5646c66b5e56ff8 /tests/resources/staticFileServer.php
parente79675330823b957fe9f8ffa462ad5317c14dbc9 (diff)
Adding Logic for namespaces in Loader.php + Fixing build
Converting Access & Auth to namespace
Diffstat (limited to 'tests/resources/staticFileServer.php')
-rw-r--r--tests/resources/staticFileServer.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/resources/staticFileServer.php b/tests/resources/staticFileServer.php
index 510e1794dc..3860cf1910 100644
--- a/tests/resources/staticFileServer.php
+++ b/tests/resources/staticFileServer.php
@@ -9,8 +9,8 @@
* This decision has a structural impact on the usual unit test file structure
* serveStaticFile.test.php has been created to avoid making too many modifications to /tests/core/Piwik.test.php
*/
-use Piwik\Core\Piwik;
-use Piwik\Core\Common;
+use Piwik\Piwik;
+use Piwik\Common;
define('PIWIK_DOCUMENT_ROOT', dirname(__FILE__).'/../../');
if(file_exists(PIWIK_DOCUMENT_ROOT . '/bootstrap.php'))