Skip to content

Commit 65e70ba

Browse files
Merge branch '3.4' into 4.4
* 3.4: [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) [SCA] Minor fixes on tests
2 parents b180a89 + af8d812 commit 65e70ba

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)