aboutsummaryrefslogtreecommitdiffstats
path: root/t/t3004-ls-files-basic.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2012-09-07 11:07:59 -0700
committerJunio C Hamano <gitster@pobox.com>2012-09-07 11:07:59 -0700
commitbdac578482c5076078174f284d7c5d9d06940754 (patch)
tree217fcf4c44bcc0e8da42df1113bf31a8765fc22a /t/t3004-ls-files-basic.sh
parent3fc0e4ca00330ce1dfd92baeda04f0aa2fbd7e68 (diff)
parent9a0013819ea541cfa1102292d1fdceb30352c2c3 (diff)
downloadgit-bdac578482c5076078174f284d7c5d9d06940754.tar.gz
Merge branch 'nd/i18n-poison-test-updates'
Update tests that can be broken with gettext-poison builds. * nd/i18n-poison-test-updates: Fix tests under GETTEXT_POISON on parseopt Fix tests under GETTEXT_POISON on git-remote Fix tests under GETTEXT_POISON on pack-object Fix tests under GETTEXT_POISON on git-apply Fix tests under GETTEXT_POISON on diffstat Fix tests under GETTEXT_POISON on git-stash Fix tests under GETTEXT_POISON on relative dates
Diffstat (limited to 't/t3004-ls-files-basic.sh')
-rwxr-xr-xt/t3004-ls-files-basic.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t3004-ls-files-basic.sh b/t/t3004-ls-files-basic.sh
index 490e052875..8d9bc3c2af 100755
--- a/t/t3004-ls-files-basic.sh
+++ b/t/t3004-ls-files-basic.sh
@@ -22,7 +22,7 @@ test_expect_success 'ls-files with nonexistent path' '
test_expect_success 'ls-files with nonsense option' '
test_expect_code 129 git ls-files --nonsense 2>actual &&
- grep "[Uu]sage: git ls-files" actual
+ test_i18ngrep "[Uu]sage: git ls-files" actual
'
test_expect_success 'ls-files -h in corrupt repository' '
@@ -33,7 +33,7 @@ test_expect_success 'ls-files -h in corrupt repository' '
>.git/index &&
test_expect_code 129 git ls-files -h >usage 2>&1
) &&
- grep "[Uu]sage: git ls-files " broken/usage
+ test_i18ngrep "[Uu]sage: git ls-files " broken/usage
'
test_done