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:
authorBenaka <diosmosis@users.noreply.github.com>2015-09-11 23:35:01 +0300
committerBenaka <diosmosis@users.noreply.github.com>2015-09-11 23:35:01 +0300
commitd64d68b5fbed5fe620a8b36bddd1a9f6b5954bba (patch)
tree8160c769277fd2e320e723b0ffdd082e3da2124b /tests/PHPUnit/Fixtures
parenta52b7f9206d07888b77a4d6c249d0e2cdc536c2c (diff)
parent0be88123ea73b7a1d56c990e8bddf955918b10cd (diff)
Merge pull request #8759 from piwik/6593_ecommerce_action_segments
Fixes #6593, in segment SQL join log_conversion on idvisit so segmentation on Actions (page url, page title...) works for goals and ecommerce reports
Diffstat (limited to 'tests/PHPUnit/Fixtures')
-rw-r--r--tests/PHPUnit/Fixtures/TwoSitesEcommerceOrderWithItems.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/PHPUnit/Fixtures/TwoSitesEcommerceOrderWithItems.php b/tests/PHPUnit/Fixtures/TwoSitesEcommerceOrderWithItems.php
index b841f029d1..ec1c2bc8f5 100644
--- a/tests/PHPUnit/Fixtures/TwoSitesEcommerceOrderWithItems.php
+++ b/tests/PHPUnit/Fixtures/TwoSitesEcommerceOrderWithItems.php
@@ -71,6 +71,8 @@ class TwoSitesEcommerceOrderWithItems extends Fixture
self::assertEquals(array('_pkc', $category), $t->getCustomVariable(5, 'page'));
self::assertEquals(array('_pkp', $price), $t->getCustomVariable(2, 'page'));
self::assertEquals(array('VisitorType', 'NewLoggedOut'), $t->getCustomVariable(5, 'visit'));
+
+ // this is also a goal conversion (visitConvertedGoalId==1)
self::checkResponse($t->doTrackPageView('incredible title!'));
$t->setForceVisitDateTime(Date::factory($this->dateTime)->addHour(0.1)->getDatetime());