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 cc11de0 commit 52a5d5fCopy full SHA for 52a5d5f
src/Symfony/Component/AssetMapper/Tests/ImportMap/RemotePackageStorageTest.php
@@ -62,7 +62,9 @@ public function testSaveThrowsWhenFailing()
62
$storage->save($entry, 'any content');
63
} finally {
64
if ('\\' === \DIRECTORY_SEPARATOR) {
65
- $this->filesystem->chmod($vendorDir.'/module_specifier/module_specifier.index.js', 0777);
+ foreach (glob($vendorDir.'/module_specifier/*') as $file) {
66
+ $this->filesystem->chmod($file, 0777);
67
+ }
68
} else {
69
$this->filesystem->chmod($vendorDir.'/module_specifier/', 0777);
70
}
0 commit comments