Skip to content

Commit b14fa08

Browse files
Merge branch '3.4' into 4.3
* 3.4: #30432 fix an error message fix paths to detect code owners [Validator] Ensure numeric subpaths do not cause errors on PHP 7.4 Remove unused local variables in tests Make sure to collect child forms created on *_SET_DATA events do not render errors for checkboxes twice
2 parents 78b7611 + 2e4c991 commit b14fa08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/CookieTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ public function testConstructException()
201201
{
202202
$this->expectException('UnexpectedValueException');
203203
$this->expectExceptionMessage('The cookie expiration time "string" is not valid.');
204-
$cookie = new Cookie('foo', 'bar', 'string');
204+
new Cookie('foo', 'bar', 'string');
205205
}
206206

207207
public function testSameSite()

0 commit comments

Comments
 (0)