8000 minor #58750 [Process] fix the path separator being used (xabbuh) · symfony/symfony@69e69a1 · GitHub
[go: up one dir, main page]

Skip to content

Commit 69e69a1

Browse files
minor #58750 [Process] fix the path separator being used (xabbuh)
This PR was merged into the 5.4 branch. Discussion ---------- [Process] fix the path separator being used | Q | A | ------------- | --- | Branch? | 5.4 | Bug fix? | no | New feature? | no | Deprecations? | no | Issues | | License | MIT I missed to also update the assertion in #58747. Commits ------- c24ebca fix the path separator being used
2 parents de6090a + c24ebca commit 69e69a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Process/Tests/ExecutableFinderTest.php

Lines changed: 1 addition & 1 deletion
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', \PATH_SEPARATOR), $result);
161161
} finally {
162162
unlink('executable');
163163
}

0 commit comments

Comments
 (0)
0