Skip to content

Commit

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

0 comments on commit 72baf6b

Please sign in to comment.