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:
Diffstat (limited to 'tests/PHPUnit/System/CookieTest.php')
-rw-r--r--tests/PHPUnit/System/CookieTest.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/PHPUnit/System/CookieTest.php b/tests/PHPUnit/System/CookieTest.php
index 2220e37bb4..0c5d709a5b 100644
--- a/tests/PHPUnit/System/CookieTest.php
+++ b/tests/PHPUnit/System/CookieTest.php
@@ -23,14 +23,14 @@ class CookieTest extends SystemTestCase
private $originalAssumeSecureValue;
- public function setUp()
+ public function setUp(): void
{
parent::setUp();
$this->testVars = static::$fixture->getTestEnvironment();
$this->originalAssumeSecureValue = Config::getInstance()->General['assume_secure_protocol'];
}
- public function tearDown()
+ public function tearDown(): void
{
parent::tearDown();
$this->testVars->overrideConfig('General', 'assume_secure_protocol', $this->originalAssumeSecureValue);
@@ -68,7 +68,7 @@ class CookieTest extends SystemTestCase
{
$headers = $this->setIgnoreCookie(self::USERAGENT_SAFARI);
$cookie = $this->findIgnoreCookie($headers);
- $this->assertNotContains($cookie, 'SameSite');
+ self::assertStringNotContainsString($cookie, 'SameSite');
}
private function setIgnoreCookie($userAgent)
@@ -103,6 +103,6 @@ class CookieTest extends SystemTestCase
private function assertCookieSameSiteMatches($expectedSameSite, $cookieHeader)
{
- $this->assertContains('SameSite=' . $expectedSameSite, $cookieHeader);
+ self::assertStringContainsString('SameSite=' . $expectedSameSite, $cookieHeader);
}
} \ No newline at end of file