Skip to content

Commit

Permalink
[Process] Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed Nov 6, 2024
1 parent ee75984 commit 0190687
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tests/ExecutableFinderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public function testFindBatchExecutableOnWindows()
$this->markTestSkipped('Can be only tested on windows');
}

$target = tempnam(sys_get_temp_dir(), 'example-windows-executable');
$target = str_replace('.tmp', '_tmp', tempnam(sys_get_temp_dir(), 'example-windows-executable'));

try {
touch($target);
Expand Down

0 comments on commit 0190687

Please sign in to comment.