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:
authordiosmosis <diosmosis@users.noreply.github.com>2019-10-01 06:23:18 +0300
committerGitHub <noreply@github.com>2019-10-01 06:23:18 +0300
commit42a62a21cb5c2df97e0b6fe64ecc2c5ea426f119 (patch)
tree3f5742d11026dfd9bc6866415630cc492e87f649 /tests/PHPUnit/Integration
parent416697204ae953c4da6c2bfd9c70562021b4b1c8 (diff)
Replace some usages of Common::printDebug w/ use of logger (#13968)
* Start refactoring Common::printDebug(). * Make tracker debug statement error log. * Remove logger removal for tracker. * Fix test failure. * Add two more parent constructor calls. * Fix failing test
Diffstat (limited to 'tests/PHPUnit/Integration')
-rw-r--r--tests/PHPUnit/Integration/TrackerTest.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/PHPUnit/Integration/TrackerTest.php b/tests/PHPUnit/Integration/TrackerTest.php
index 450a9a64c4..cd0778a253 100644
--- a/tests/PHPUnit/Integration/TrackerTest.php
+++ b/tests/PHPUnit/Integration/TrackerTest.php
@@ -490,6 +490,8 @@ class TestTracker extends Tracker
{
public function __construct()
{
+ parent::__construct();
+
$this->isInstalled = true;
$this->record = true;
}