Skip to content

Commit ac99b4d

Browse files
authored
Fix one more missing PHP_BINARY (phpactor#2650)
See 81dfad4
1 parent b890cfb commit ac99b4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Rename/Tests/RenamerTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public function testRename(string $path, Closure $operation, Closure $assertion)
6666
);
6767
}
6868

69-
$process = Process::fromShellCommandline('php ' . $this->workspace()->path('project/test.php'));
69+
$process = Process::fromShellCommandline(PHP_BINARY . ' ' . $this->workspace()->path('project/test.php'));
7070
$process->mustRun();
7171
$assertion($this->reflector);
7272
}

0 commit comments

Comments
 (0)