1
0
Fork 0

Fix VcsRepositoryTest

pull/9272/head
Nicolas Grekas 2020-10-08 11:04:39 +02:00
parent 23d42c6717
commit f9913205dd
1 changed files with 2 additions and 2 deletions

View File

@ -42,8 +42,8 @@ class VcsRepositoryTest extends TestCase
return;
}
if (!@mkdir(self::$gitRepo) || !@chdir(self::$gitRepo)) {
$this->skipped = 'Could not create and move into the temp git repo '.self::$gitRepo;
if (!@chdir(self::$gitRepo)) {
$this->skipped = 'Could not move into the temp git repo '.self::$gitRepo;
return;
}