From 1e15edc43d9d910f09e1ea2ceefc2c863151d142 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Mon, 18 Feb 2013 08:34:23 +0100 Subject: [PATCH] Fix repository test --- tests/Composer/Test/Repository/VcsRepositoryTest.php | 2 ++ 1 file changed, 2 insertions(+) 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');