Skip to content

Commit f105234

Browse files
Merge branch '4.4' into 5.0
* 4.4: fix merge Require PHPUnit 9.3 on PHP 8 [Cache] fix catching auth errors Fix CS [FrameworkBundle] set default session.handler alias if handler_id is not provided Fix CS Readability update Fix checks for phpunit releases on Composer 2 (resolves #37601) [Serializer] Support multiple levels of discriminator mapping Use hexadecimal numerals instead of hexadecimals in strings to represent error codes. [SCA] Minor fixes on tests [WebProfilerBundle] modified url generation to use absolute urls [Mailer] Fix reply-to functionality in the SendgridApiTransport [Mime] Fix compat with HTTP requests ticket_36879 - Fix mandrill raw http request setting from email/name
2 parents b521141 + 65e70ba commit f105234

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/PhpExecutableFinderTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ public function testFindArguments()
4141
$f = new PhpExecutableFinder();
4242

4343
if ('phpdbg' === \PHP_SAPI) {
44-
$this->assertEquals($f->findArguments(), ['-qrr'], '::findArguments() returns phpdbg arguments');
44+
$this->assertEquals(['-qrr'], $f->findArguments(), '::findArguments() returns phpdbg arguments');
4545
} else {
46-
$this->assertEquals($f->findArguments(), [], '::findArguments() returns no arguments');
46+
$this->assertEquals([], $f->findArguments(), '::findArguments() returns no arguments');
4747
}
4848
}
4949

0 commit comments

Comments
 (0)