summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2012-02-05 22:16:58 +0100
committerNicholas Clark <nick@ccl4.org>2012-02-05 22:16:58 +0100
commite67589ac03216f614436a2f92e098198c86f6b16 (patch)
tree7e4efa35bc641aa261b4aee0a7a31dbb25f2db84
parent8f13c642c98a8e4084c508b31076da75b106b7e4 (diff)
downloadperl-e67589ac03216f614436a2f92e098198c86f6b16.tar.gz
In t/porting/authors.t, correct a typo in the git log format string.
The format added in commit 3ea0c581844689ab had a typo - %cn (committer name) used instead of %ce (committer e-mail).
-rw-r--r--t/porting/authors.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/porting/authors.t b/t/porting/authors.t
index 70565a3511..2e78f92c5d 100644
--- a/t/porting/authors.t
+++ b/t/porting/authors.t
@@ -11,6 +11,6 @@ require 't/test.pl';
find_git_or_skip('all');
# This is the subset of "pretty=fuller" that checkAUTHORS.pl actually needs:
-system("git log --pretty=format:'commit %H%nAuthor: %an <%ae>%nAuthor Date:%nCommit: %cn <%cn>%n' | $^X Porting/checkAUTHORS.pl --tap -");
+system("git log --pretty=format:'commit %H%nAuthor: %an <%ae>%nAuthor Date:%nCommit: %cn <%ce>%n' | $^X Porting/checkAUTHORS.pl --tap -");
# EOF