Skip to content

Commit

Permalink
Merge branch '5.4' into 6.4
Browse files Browse the repository at this point in the history
* 5.4:
  fix the constant being used
  fix the path separator being used
  • Loading branch information
xabbuh committed Nov 4, 2024
2 parents 250ae06 + 72baf6b commit 836d34f
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 @@ -157,7 +157,7 @@ public function testEmptyDirInPath()
$finder = new ExecutableFinder();
$result = $finder->find('executable');

$this->assertSame('./executable', $result);
$this->assertSame(sprintf('.%sexecutable', \DIRECTORY_SEPARATOR), $result);
} finally {
unlink('executable');
}
Expand Down

0 comments on commit 836d34f

Please sign in to comment.