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-02-27 13:08:45 +0300
committerGitHub <noreply@github.com>2020-02-27 13:08:45 +0300
commit93aef4865cfdee9fcfa5acc9ff1950459a0af42e (patch)
treeaa8ad643d8ad233ffb2b033a437bcd2b71274877 /plugins/Contents
parentf28c7fa6cb6c63c8f459206448c7dcb93568099e (diff)
Update to PHPUnit 8.5 (#15581)
* use latest phpunit/phpunit ~8.5 * submodule updates * fixes
Diffstat (limited to 'plugins/Contents')
-rw-r--r--plugins/Contents/tests/Fixtures/TwoVisitsWithContents.php4
-rw-r--r--plugins/Contents/tests/System/ContentsTest.php6
2 files changed, 5 insertions, 5 deletions
diff --git a/plugins/Contents/tests/Fixtures/TwoVisitsWithContents.php b/plugins/Contents/tests/Fixtures/TwoVisitsWithContents.php
index aea0a68c51..0898578b18 100644
--- a/plugins/Contents/tests/Fixtures/TwoVisitsWithContents.php
+++ b/plugins/Contents/tests/Fixtures/TwoVisitsWithContents.php
@@ -21,7 +21,7 @@ class TwoVisitsWithContents extends Fixture
public $idSite = 1;
public $idGoal1 = 1;
- public function setUp()
+ public function setUp(): void
{
$this->setUpWebsitesAndGoals();
$this->trackVisits();
@@ -91,7 +91,7 @@ class TwoVisitsWithContents extends Fixture
self::checkResponse($vis->doTrackContentImpression('Video Ad', 'movie.mov'));
}
- public function tearDown()
+ public function tearDown(): void
{
}
} \ No newline at end of file
diff --git a/plugins/Contents/tests/System/ContentsTest.php b/plugins/Contents/tests/System/ContentsTest.php
index 363463b4da..d7a4b350a7 100644
--- a/plugins/Contents/tests/System/ContentsTest.php
+++ b/plugins/Contents/tests/System/ContentsTest.php
@@ -45,13 +45,13 @@ class ContentsTest extends SystemTestCase
);
}
- protected function setup()
+ public function setUp(): void
{
- parent::setup();
+ parent::setUp();
Fixture::loadAllTranslations();
}
- protected function tearDown()
+ public function tearDown(): void
{
parent::tearDown();
Fixture::resetTranslations();