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
path: root/tests
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2014-06-06 10:35:00 +0400
committermattab <matthieu.aubry@gmail.com>2014-06-06 10:35:00 +0400
commit985c8754adfb60e8be1f5596561ab6b8ff0cbd69 (patch)
treef6b0286e2ca2baf646206334ec52641901ef40e3 /tests
parentc401de550c65bc23f27ff79db87827dd9cc3d47a (diff)
Fix core test
Diffstat (limited to 'tests')
-rw-r--r--tests/PHPUnit/Core/ScheduledTaskTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/PHPUnit/Core/ScheduledTaskTest.php b/tests/PHPUnit/Core/ScheduledTaskTest.php
index 33c581102d..29a67295d2 100644
--- a/tests/PHPUnit/Core/ScheduledTaskTest.php
+++ b/tests/PHPUnit/Core/ScheduledTaskTest.php
@@ -18,7 +18,7 @@ class ScheduledTaskTest extends PHPUnit_Framework_TestCase
public function testGetClassName()
{
$scheduledTask = new ScheduledTask (new ScheduledReports(), null, null, null);
- $this->assertEquals('ScheduledReports', $scheduledTask->getClassName());
+ $this->assertEquals('Piwik\Plugins\ScheduledReports\ScheduledReports', $scheduledTask->getClassName());
}
/**