Skip to content

Commit

Permalink
Fix one more missing PHP_BINARY (#2650)
Browse files Browse the repository at this point in the history
  • Loading branch information
MatmaRex committed May 1, 2024
1 parent b890cfb commit ac99b4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Rename/Tests/RenamerTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public function testRename(string $path, Closure $operation, Closure $assertion)
);
}

$process = Process::fromShellCommandline('php ' . $this->workspace()->path('project/test.php'));
$process = Process::fromShellCommandline(PHP_BINARY . ' ' . $this->workspace()->path('project/test.php'));
$process->mustRun();
$assertion($this->reflector);
}
Expand Down

0 comments on commit ac99b4d

Please sign in to comment.