From 721ecd12f0ef7a212974d5040e3349c20f3a7cf4 Mon Sep 17 00:00:00 2001 Message-Id: <721ecd12f0ef7a212974d5040e3349c20f3a7cf4.1746792511.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sun, 20 Apr 2008 15:17:41 +0200 Subject: [PATCH] Use hardcoded author and committer names in tests MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Organization: Straylight/Edgeware From: Karl Hasselström There seems to be no reason for these to stay commented out -- in fact, commit v0.12-4-g5cd9e87 which introduced these lines seems to have left them commented out by mistake. Signed-off-by: Karl Hasselström --- t/test-lib.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/t/test-lib.sh b/t/test-lib.sh index 2d12f1b..5e4c7a1 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -20,11 +20,11 @@ unset COMMIT_AUTHOR_NAME unset EMAIL unset GIT_ALTERNATE_OBJECT_DIRECTORIES unset GIT_AUTHOR_DATE -#GIT_AUTHOR_EMAIL=author@example.com -#GIT_AUTHOR_NAME='A U Thor' +GIT_AUTHOR_EMAIL=author@example.com +GIT_AUTHOR_NAME='A U Thor' unset GIT_COMMITTER_DATE -#GIT_COMMITTER_EMAIL=committer@example.com -#GIT_COMMITTER_NAME='C O Mitter' +GIT_COMMITTER_EMAIL=committer@example.com +GIT_COMMITTER_NAME='C O Mitter' unset GIT_DIFF_OPTS unset GIT_DIR unset GIT_EXTERNAL_DIFF -- [mdw]