Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8e304b commit 27997f4Copy full SHA for 27997f4
src/Symfony/Component/Filesystem/Tests/FilesystemTest.php
@@ -1045,7 +1045,7 @@ public function testTempnamOnUnwritableFallsBackToSysTmp()
1045
$this->assertFileExists($filename);
1046
1047
// Tear down
1048
- unlink($filename);
+ @unlink($filename);
1049
}
1050
1051
public function testDumpFile()
@@ -1104,6 +1104,10 @@ public function testDumpFileOverwritesAnExistingFile()
1104
1105
public function testDumpFileWithFileScheme()
1106
{
1107
+ if (defined('HHVM_VERSION')) {
1108
+ $this->markTestSkipped('HHVM does not handle the file:// scheme correctly');
1109
+ }
1110
+
1111
$scheme = 'file://';
1112
$filename = $scheme.$this->workspace.DIRECTORY_SEPARATOR.'foo'.DIRECTORY_SEPARATOR.'baz.txt';
1113
0 commit comments