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>2015-03-31 01:26:28 +0300
committerThomas Steur <thomas.steur@gmail.com>2015-03-31 05:27:07 +0300
commitbcf12baf6307283e9895b8bf0567d5bc21a08c9f (patch)
tree406d970f69fb0c08e6347b4479646b6a5a3580aa /tests/PHPUnit/System/TwoVisitsWithCustomVariablesSegmentMatchVisitorTypeTest.php
parentbe9dc8ecb9c74d515a1d510fddf09bbbb455fe5a (diff)
fix broken tests
Diffstat (limited to 'tests/PHPUnit/System/TwoVisitsWithCustomVariablesSegmentMatchVisitorTypeTest.php')
-rwxr-xr-xtests/PHPUnit/System/TwoVisitsWithCustomVariablesSegmentMatchVisitorTypeTest.php15
1 files changed, 7 insertions, 8 deletions
diff --git a/tests/PHPUnit/System/TwoVisitsWithCustomVariablesSegmentMatchVisitorTypeTest.php b/tests/PHPUnit/System/TwoVisitsWithCustomVariablesSegmentMatchVisitorTypeTest.php
index a2c1d06672..05f6ef79d9 100755
--- a/tests/PHPUnit/System/TwoVisitsWithCustomVariablesSegmentMatchVisitorTypeTest.php
+++ b/tests/PHPUnit/System/TwoVisitsWithCustomVariablesSegmentMatchVisitorTypeTest.php
@@ -117,24 +117,23 @@ class TwoVisitsWithCustomVariablesSegmentMatchVisitorTypeTest extends SystemTest
public function test_checkArchiveRecords_shouldMergeSubtablesIntoOneRow()
{
$chunk = new Chunk();
- $chunkBlobId = $chunk->getRecordNameForTableId(0);
$tests = array(
'archive_blob_2010_01' => array(
- 'CustomVariables_valueByName_' . $chunkBlobId => 6,
- 'Referrers_keywordBySearchEngine_' . $chunkBlobId => 1,
- 'Referrers_searchEngineByKeyword_' . $chunkBlobId => 1,
+ $chunk->getRecordNameForTableId('CustomVariables_valueByName', 0) => 6,
+ $chunk->getRecordNameForTableId('Referrers_keywordBySearchEngine', 0) => 1,
+ $chunk->getRecordNameForTableId('Referrers_searchEngineByKeyword', 0) => 1
),
'archive_blob_2009_12' => array(
- 'CustomVariables_valueByName_' . $chunkBlobId => 6,
- 'Referrers_keywordBySearchEngine_' . $chunkBlobId => 1,
- 'Referrers_searchEngineByKeyword_' . $chunkBlobId => 1,
+ $chunk->getRecordNameForTableId('CustomVariables_valueByName', 0) => 6,
+ $chunk->getRecordNameForTableId('Referrers_keywordBySearchEngine', 0) => 1,
+ $chunk->getRecordNameForTableId('Referrers_searchEngineByKeyword', 0) => 1,
)
);
$numTests = 0;
foreach ($tests as $table => $expectedSubtables) {
foreach ($expectedSubtables as $name => $expectedNumSubtables) {
- $sql = "SELECT `value` FROM " . Common::prefixTable($table) . " WHERE `name` ='$name'";
+ $sql = "SELECT `value` FROM " . Common::prefixTable($table) . " WHERE `name` ='$name'";
$blobs = Db::get()->fetchAll($sql);
foreach ($blobs as $blob) {