소스 검색

Fix repository test

Jordi Boggiano 12 년 전
부모
커밋
1e15edc43d
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      tests/Composer/Test/Repository/VcsRepositoryTest.php

+ 2 - 0
tests/Composer/Test/Repository/VcsRepositoryTest.php

@@ -55,6 +55,8 @@ class VcsRepositoryTest extends \PHPUnit_Framework_TestCase
         };
 
         $exec('git init');
+        $exec('git config user.email composertest@example.org');
+        $exec('git config user.name ComposerTest');
         touch('foo');
         $exec('git add foo');
         $exec('git commit -m init');