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>2020-02-20 06:05:15 +0300
committerGitHub <noreply@github.com>2020-02-20 06:05:15 +0300
commit071f505d19924503691d4f4028ad58c4f50ffb50 (patch)
tree268fe99b6b6f8996fadada44f64cd4acfe24b950 /tests/PHPUnit
parent2ca0084054e596e2bcce1edff76d62040bf0b23a (diff)
Fix couple issues w/ samesite handling in session, make sure session … (#15561)
Diffstat (limited to 'tests/PHPUnit')
-rw-r--r--tests/PHPUnit/System/CookieTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/PHPUnit/System/CookieTest.php b/tests/PHPUnit/System/CookieTest.php
index 897db63e1a..2220e37bb4 100644
--- a/tests/PHPUnit/System/CookieTest.php
+++ b/tests/PHPUnit/System/CookieTest.php
@@ -61,7 +61,7 @@ class CookieTest extends SystemTestCase
{
$headers = $this->setIgnoreCookie(self::USERAGENT_FIREFOX);
$cookie = $this->findIgnoreCookie($headers);
- $this->assertCookieSameSiteMatches('None', $cookie);
+ $this->assertCookieSameSiteMatches('Lax', $cookie);
}
public function testIgnoreCookieSameSiteSafari()