mirror of
https://github.com/composer/composer
synced 2025-05-10 00:53:06 +00:00
Suppress errors from mkdir calls that are checked for failure
This commit is contained in:
parent
0525297ff5
commit
27898c4c31
3 changed files with 3 additions and 3 deletions
|
@ -39,7 +39,7 @@ class VcsRepositoryTest extends \PHPUnit_Framework_TestCase
|
|||
|
||||
return;
|
||||
}
|
||||
if (!mkdir(self::$gitRepo) || !chdir(self::$gitRepo)) {
|
||||
if (!@mkdir(self::$gitRepo) || !@chdir(self::$gitRepo)) {
|
||||
$this->skipped = 'Could not create and move into the temp git repo '.self::$gitRepo;
|
||||
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue