Skip to content

Commit

Permalink
fix the path separator being used
Browse files Browse the repository at this point in the history
  • Loading branch information
xabbuh committed Nov 4, 2024
1 parent d67303e commit 81e1a0c
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', \PATH_SEPARATOR), $result);
} finally {
unlink('executable');
}
Expand Down

0 comments on commit 81e1a0c

Please sign in to comment.