Skip to content

Commit 3994e8a

Browse files
drafnelgitster
authored andcommitted
t4201: use ISO8859-1 rather than ISO-8859-1
Some ancient platforms do not have an extensive list of alternate names for character encodings. For example, Solaris 7 and IRIX 6.5 do not know that ISO-8859-1 is the same as ISO8859-1. Modern platforms do know this, so use the older name. Signed-off-by: Brandon Casey <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 79f7ca0 commit 3994e8a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

t/t4201-shortlog.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ GIT_DIR=non-existing git shortlog -w < log > out
5353
test_expect_success 'shortlog from non-git directory' 'test_cmp expect out'
5454

5555
iconvfromutf8toiso88591() {
56-
printf "%s" "$*" | iconv -f UTF-8 -t ISO-8859-1
56+
printf "%s" "$*" | iconv -f UTF-8 -t ISO8859-1
5757
}
5858

5959
DSCHO="Jöhännës \"Dschö\" Schindëlin"
@@ -72,7 +72,7 @@ test_expect_success 'shortlog encoding' '
7272
git config --unset i18n.commitencoding &&
7373
echo 2 > a1 &&
7474
git commit --quiet -m "$MSG1" --author="$DSCHOE" a1 &&
75-
git config i18n.commitencoding "ISO-8859-1" &&
75+
git config i18n.commitencoding "ISO8859-1" &&
7676
echo 3 > a1 &&
7777
git commit --quiet -m "$(iconvfromutf8toiso88591 "$MSG2")" \
7878
--author="$(iconvfromutf8toiso88591 "$DSCHOE")" a1 &&

0 commit comments

Comments
 (0)