Skip to content

Commit

Permalink
Merge branch '6.4' into 7.1
Browse files Browse the repository at this point in the history
* 6.4:
  silence warnings triggered when malformed XML is parsed
  pass the test name to the WebTestCase constructor
  • Loading branch information
xabbuh committed Oct 17, 2024
2 parents adb9826 + 2c15425 commit 4cbf327
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/Test/WebTestCaseTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ private function getRequestTester(): WebTestCase

private function getTester(KernelBrowser $client): WebTestCase
{
$tester = new class() extends WebTestCase {
$tester = new class(method_exists($this, 'name') ? $this->name() : $this->getName()) extends WebTestCase {
use WebTestAssertionsTrait {
getClient as public;
}
Expand Down

0 comments on commit 4cbf327

Please sign in to comment.