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.
There was an error while loading. Please reload this page.
1 parent b6a29a2 commit 1605ce1Copy full SHA for 1605ce1
src/Symfony/Component/Filesystem/Tests/FilesystemTest.php
@@ -1115,6 +1115,10 @@ public function testDumpFailsWithExceptionIfExecutablePermissionsForTheParentDir
1115
mkdir($target);
1116
chmod($this->workspace, 0666);
1117
1118
+ if (false !== @chdir($this->workspace)) {
1119
+ $this->markTestSkipped('Test skipped as the used PHP version does not prevent entering directories without the required permissions.');
1120
+ }
1121
+
1122
$this->filesystem->dumpFile($file, 'baz');
1123
}
1124
0 commit comments