Skip to content

Commit

Permalink
Merge branch '7.1' into 7.2
Browse files Browse the repository at this point in the history
* 7.1:
  [Process] Fix test
  • Loading branch information
nicolas-grekas committed Nov 6, 2024
2 parents f2f5bb9 + 9b8a40b commit 37f5c1f
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 @@ -148,7 +148,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 37f5c1f

Please sign in to comment.