diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-04-13 01:33:39 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-04-14 00:52:47 +0200 |
commit | b3e1900a740156586b00c62f8fe67aafb1ce346d (patch) | |
tree | 976e984f358168725e20445169b0746e086511cc /t/t7004-tag.sh | |
parent | i18n: use test_i18ncmp and test_i18ngrep in t3700, t4001 and t4014 (diff) | |
download | git-b3e1900a740156586b00c62f8fe67aafb1ce346d.tar.xz git-b3e1900a740156586b00c62f8fe67aafb1ce346d.zip |
i18n: use test_i18ncmp and test_i18ngrep in t5541, t6040, t6120, t7004, t7012 and t7060
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t7004-tag.sh')
-rwxr-xr-x | t/t7004-tag.sh | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/t/t7004-tag.sh b/t/t7004-tag.sh index 1dedfd0c83..2ac1c66079 100755 --- a/t/t7004-tag.sh +++ b/t/t7004-tag.sh @@ -1120,13 +1120,11 @@ test_expect_success \ ! (GIT_EDITOR=cat git tag -a initial-comment > actual) ' -test_expect_success \ - C_LOCALE_OUTPUT \ - 'message in editor has initial comment: first line' ' +test_expect_success 'message in editor has initial comment: first line' ' # check the first line --- should be empty echo >first.expect && sed -e 1q <actual >first.actual && - test_cmp first.expect first.actual + test_i18ncmp first.expect first.actual ' test_expect_success \ |