From: Richard Hansen Date: Mon, 18 Nov 2013 04:12:48 +0000 (-0500) Subject: test-hg.sh: fix duplicate content strings in author tests X-Git-Tag: v1.9-rc0~87^2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=962df3dab78a2f5f583f096814ae952fc4426498;p=git test-hg.sh: fix duplicate content strings in author tests "beta" was used twice. Change the second copy to "gamma" and increment the remaining content strings. Signed-off-by: Richard Hansen Reviewed-by: Felipe Contreras Signed-off-by: Junio C Hamano --- diff --git a/contrib/remote-helpers/test-hg.sh b/contrib/remote-helpers/test-hg.sh index 5535e8c9be..eb72db8b6d 100755 --- a/contrib/remote-helpers/test-hg.sh +++ b/contrib/remote-helpers/test-hg.sh @@ -207,15 +207,15 @@ test_expect_success 'authors' ' >../expected && author_test alpha "" "H G Wells " && author_test beta "test" "test " && - author_test beta "test (comment)" "test " && - author_test gamma "" "Unknown " && - author_test delta "name" "name " && - author_test epsilon "name " && - author_test zeta " test " "test " && - author_test eta "test < test@example.com >" "test " && - author_test theta "test >test@example.com>" "test " && - author_test iota "test < test example com>" "test " && - author_test kappa "test@example.com" "Unknown " + author_test gamma "test (comment)" "test " && + author_test delta "" "Unknown " && + author_test epsilon "name" "name " && + author_test zeta "name " && + author_test eta " test " "test " && + author_test theta "test < test@example.com >" "test " && + author_test iota "test >test@example.com>" "test " && + author_test kappa "test < test example com>" "test " && + author_test lambda "test@example.com" "Unknown " ) && git clone "hg::hgrepo" gitrepo &&