File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -62,11 +62,11 @@ public function testFindArguments()
6262 $ f = new PhpExecutableFinder ();
6363
6464 if (\defined ('HHVM_VERSION ' )) {
65- $ this ->assertEquals ($ f -> findArguments (), ['--php ' ], '::findArguments() returns HHVM arguments ' );
65+ $ this ->assertEquals (['--php ' ], $ f -> findArguments () , '::findArguments() returns HHVM arguments ' );
6666 } elseif ('phpdbg ' === \PHP_SAPI ) {
67- $ this ->assertEquals ($ f ->findArguments (), [ ' -qrr ' ] , '::findArguments() returns phpdbg arguments ' );
67+ $ this ->assertEquals ([ ' -qrr ' ], $ f ->findArguments (), '::findArguments() returns phpdbg arguments ' );
6868 } else {
69- $ this ->assertEquals ($ f ->findArguments (), [] , '::findArguments() returns no arguments ' );
69+ $ this ->assertEquals ([], $ f ->findArguments (), '::findArguments() returns no arguments ' );
7070 }
7171 }
7272}
You can’t perform that action at this time.
0 commit comments