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:
authorStefan Giehl <stefan@matomo.org>2020-05-27 11:58:17 +0300
committerGitHub <noreply@github.com>2020-05-27 11:58:17 +0300
commitd68ca687e061357faed004d26cb77cef077b4e34 (patch)
treedb2261de1917fc8f235cd0abe6e5043f57944a4f /tests/PHPUnit/Fixtures
parent266073ae2d1be4f95953c0c8f49ef29af75f97a3 (diff)
Removes director detection (#15989)
* Remove detection for director * Drop column * some more adjustments * submodule updates * updates expected test files * updates expected UI files * fix test * rebuilt piwik.js * submodule updates * fix tests Co-authored-by: pebosi <mail@pebosi.net> Co-authored-by: Peter Boden <p.boden@pax.de> Co-authored-by: sgiehl <sgiehl@users.noreply.github.com>
Diffstat (limited to 'tests/PHPUnit/Fixtures')
-rw-r--r--tests/PHPUnit/Fixtures/ThreeVisitsWithCustomEvents.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/PHPUnit/Fixtures/ThreeVisitsWithCustomEvents.php b/tests/PHPUnit/Fixtures/ThreeVisitsWithCustomEvents.php
index 324e6e62c2..d5ec724e7f 100644
--- a/tests/PHPUnit/Fixtures/ThreeVisitsWithCustomEvents.php
+++ b/tests/PHPUnit/Fixtures/ThreeVisitsWithCustomEvents.php
@@ -64,7 +64,7 @@ class ThreeVisitsWithCustomEvents extends Fixture
$vis2 = self::getTracker($this->idSite, $this->dateTime, $useDefault = true, $uselocal);
$vis2->setUrl('http://example.com/piwik/');
$vis2->setIp('111.1.1.1');
- $vis2->setPlugins($flash = false, $java = false, $director = true);
+ $vis2->setPlugins($flash = false, $java = false);
$this->trackMusicPlaying($vis2);
$this->trackMusicRatings($vis2);
@@ -74,7 +74,7 @@ class ThreeVisitsWithCustomEvents extends Fixture
$vis3 = self::getTracker($this->idSite, $this->dateTime, $useDefault = true, $uselocal);
$vis3->setUrl('http://example.com/piwik/');
$vis3->setIp('111.1.1.2');
- $vis3->setPlugins($flash = false, $java = false, $director = true);
+ $vis3->setPlugins($flash = false, $java = false);
$this->trackMusicPlaying($vis3);
$this->trackMusicRatings($vis3);