diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-04-12 16:33:39 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-04-13 15:52:47 -0700 |
commit | b3e1900a740156586b00c62f8fe67aafb1ce346d (patch) | |
tree | 976e984f358168725e20445169b0746e086511cc /t/t7012-skip-worktree-writing.sh | |
parent | 68b2a0055c9936235fac6559de783f39fb790318 (diff) | |
download | git-b3e1900a740156586b00c62f8fe67aafb1ce346d.tar.gz |
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/t7012-skip-worktree-writing.sh')
-rwxr-xr-x | t/t7012-skip-worktree-writing.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/t/t7012-skip-worktree-writing.sh b/t/t7012-skip-worktree-writing.sh index 14fcb1c7f5..cffb2696d4 100755 --- a/t/t7012-skip-worktree-writing.sh +++ b/t/t7012-skip-worktree-writing.sh @@ -124,16 +124,16 @@ cat >expected <<EOF Would remove expected Would remove result EOF -test_expect_success C_LOCALE_OUTPUT 'git-clean, absent case' ' +test_expect_success 'git-clean, absent case' ' setup_absent && git clean -n > result && - test_cmp expected result + test_i18ncmp expected result ' -test_expect_success C_LOCALE_OUTPUT 'git-clean, dirty case' ' +test_expect_success 'git-clean, dirty case' ' setup_dirty && git clean -n > result && - test_cmp expected result + test_i18ncmp expected result ' #TODO test_expect_failure 'git-apply adds file' false |