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:
authorThomas Steur <thomas.steur@gmail.com>2016-10-11 00:06:29 +0300
committerThomas Steur <thomas.steur@gmail.com>2016-10-11 00:06:29 +0300
commit988c39979ba9ea9d2380a581c83ce4e95e1182ca (patch)
tree6a27ca47efd8c9078ff49a150b8a298ca7bee46d /tests/PHPUnit/System/CustomEventsTest.php
parente2c52644eec2c7c5207e7abf5612987384ffd246 (diff)
fix min and max event value is summed
Diffstat (limited to 'tests/PHPUnit/System/CustomEventsTest.php')
-rw-r--r--tests/PHPUnit/System/CustomEventsTest.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/PHPUnit/System/CustomEventsTest.php b/tests/PHPUnit/System/CustomEventsTest.php
index f0eef83354..bb2ba6bca7 100644
--- a/tests/PHPUnit/System/CustomEventsTest.php
+++ b/tests/PHPUnit/System/CustomEventsTest.php
@@ -8,7 +8,7 @@
namespace Piwik\Tests\System;
use Piwik\Tests\Framework\TestCase\SystemTestCase;
-use Piwik\Tests\Fixtures\TwoVisitsWithCustomEvents;
+use Piwik\Tests\Fixtures\ThreeVisitsWithCustomEvents;
/**
* Testing Custom Events
@@ -19,7 +19,7 @@ use Piwik\Tests\Fixtures\TwoVisitsWithCustomEvents;
class CustomEventsTest extends SystemTestCase
{
/**
- * @var TwoVisitsWithCustomEvents
+ * @var ThreeVisitsWithCustomEvents
*/
public static $fixture = null; // initialized below class definition
@@ -91,7 +91,7 @@ class CustomEventsTest extends SystemTestCase
'idSite' => $idSite1,
'date' => $dateTime,
'periods' => $dayPeriod,
- 'idGoal' => TwoVisitsWithCustomEvents::$idGoalTriggeredOnEventCategory,
+ 'idGoal' => ThreeVisitsWithCustomEvents::$idGoalTriggeredOnEventCategory,
'setDateLastN' => false)
)
@@ -151,4 +151,4 @@ class CustomEventsTest extends SystemTestCase
}
}
-CustomEventsTest::$fixture = new TwoVisitsWithCustomEvents();
+CustomEventsTest::$fixture = new ThreeVisitsWithCustomEvents();