Skip to content

Commit 47b8538

Browse files
committed
[Filesystem] missing realpath breaking FilesystemTest class on Windows (one line of code change)
1 parent 7bc6d6d commit 47b8538

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/Symfony/Component/Filesystem/Tests/FilesystemTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ public function setUp()
3333
$this->filesystem = new Filesystem();
3434
$this->workspace = rtrim(sys_get_temp_dir(), DIRECTORY_SEPARATOR).DIRECTORY_SEPARATOR.time().rand(0, 1000);
3535
mkdir($this->workspace, 0777, true);
36+
$this->workspace = realpath($this->workspace);
3637
}
3738

3839
public function tearDown()

0 commit comments

Comments
 (0)