diff --git a/tests/Composer/Test/Repository/VcsRepositoryTest.php b/tests/Composer/Test/Repository/VcsRepositoryTest.php index 6a4113fec..2673d10b0 100644 --- a/tests/Composer/Test/Repository/VcsRepositoryTest.php +++ b/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');