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>2016-03-03 18:32:12 +0300
committermattab <matthieu.aubry@gmail.com>2016-03-03 18:32:12 +0300
commit94f3a97f5688054f2e305d44ad51681152aeee7d (patch)
tree14f3080f04538e6ca4abd49e824c7eabed6121d7 /tests/PHPUnit/System/TransitionsTest.php
parent6f3faf8c9dea2772ab74891a4c3c7216e231b84c (diff)
Prefix DB field by the table alias, to prevent error when a segment joins another table that has some field names in common #9822
Diffstat (limited to 'tests/PHPUnit/System/TransitionsTest.php')
-rw-r--r--tests/PHPUnit/System/TransitionsTest.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/PHPUnit/System/TransitionsTest.php b/tests/PHPUnit/System/TransitionsTest.php
index 44d38dc9db..b319558c90 100644
--- a/tests/PHPUnit/System/TransitionsTest.php
+++ b/tests/PHPUnit/System/TransitionsTest.php
@@ -91,6 +91,15 @@ class TransitionsTest extends SystemTestCase
'limitBeforeGrouping' => 2
)
));
+ $return[] = array('Transitions.getTransitionsForPageTitle', array(
+ 'idSite' => self::$fixture->idSite,
+ 'date' => self::$fixture->dateTime,
+ 'periods' => array('day'),
+ 'testSuffix' => '_withSegment',
+ 'otherRequestParameters' => array(
+ 'pageTitle' => 'page title - page/one.html',
+ )
+ ));
return $return;
}