Skip to content

Commit 836d34f

Browse files
committed
Merge branch '5.4' into 6.4
* 5.4: fix the constant being used fix the path separator being used
2 parents 250ae06 + 72baf6b commit 836d34f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/ExecutableFinderTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ public function testEmptyDirInPath()
157157
$finder = new ExecutableFinder();
158158
$result = $finder->find('executable');
159159

160-
$this->assertSame('./executable', $result);
160+
$this->assertSame(sprintf('.%sexecutable', \DIRECTORY_SEPARATOR), $result);
161161
} finally {
162162
unlink('executable');
163163
}

0 commit comments

Comments
 (0)