[Filesystem] missing realpath breaking FilesystemTest class on Windows (one line of code change)

This commit is contained in:
Christophe L 2012-08-10 18:14:30 +04:00
parent 7bc6d6d182
commit 47b8538edd

View File

@ -33,6 +33,7 @@ class FilesystemTest extends \PHPUnit_Framework_TestCase
$this->filesystem = new Filesystem();
$this->workspace = rtrim(sys_get_temp_dir(), DIRECTORY_SEPARATOR).DIRECTORY_SEPARATOR.time().rand(0, 1000);
mkdir($this->workspace, 0777, true);
$this->workspace = realpath($this->workspace);
}
public function tearDown()