diff options
author | Ævar Arnfjörð Bjarmason <avarab@gmail.com> | 2011-11-05 17:28:43 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-11-05 23:14:26 -0700 |
commit | ca0f515d75ee3328b8fa70f6eeedb4f06ba79028 (patch) | |
tree | 6d097d5f7636e01d766f84b273d925d8b641b2a7 /t/t7508-status.sh | |
parent | 475b3777bdae3c7c36f383a6a58f999111bffa18 (diff) | |
download | git-ca0f515d75ee3328b8fa70f6eeedb4f06ba79028.tar.gz |
t/t7508-status.sh: use test_i18ncmpab/i18n-test-fix
Change a i18n-specific comparison in t/t7508-status.sh to use
test_i18ncmp instead. This was introduced in v1.7.6.3~11^2 and has
been broken under GETTEXT_POISON=YesPlease since.
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t7508-status.sh')
-rwxr-xr-x | t/t7508-status.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t7508-status.sh b/t/t7508-status.sh index 905255adf0..fc57b135c5 100755 --- a/t/t7508-status.sh +++ b/t/t7508-status.sh @@ -189,7 +189,7 @@ test_expect_success 'status with gitignore' ' # untracked EOF git status --ignored >output && - test_cmp expect output + test_i18ncmp expect output ' test_expect_success 'status with gitignore (nothing untracked)' ' @@ -247,7 +247,7 @@ test_expect_success 'status with gitignore (nothing untracked)' ' # untracked EOF git status --ignored >output && - test_cmp expect output + test_i18ncmp expect output ' rm -f .gitignore |