aboutsummaryrefslogtreecommitdiff
path: root/t/t3203-branch-output.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-04-12 16:23:01 -0700
committerJunio C Hamano <gitster@pobox.com>2011-04-13 15:52:47 -0700
commitfff1bb3a349687e262ba4fcf5f333af07be9d149 (patch)
treec99244134339e8bc5152f7bfcef98c80149e9135 /t/t3203-branch-output.sh
parentf2c8c8007c43b75e6a461137364a3ec65108afbc (diff)
downloadgit-fff1bb3a349687e262ba4fcf5f333af07be9d149.tar.gz
git-fff1bb3a349687e262ba4fcf5f333af07be9d149.tar.xz
i18n: use test_i18ncmp and test_i18ngrep in t3203, t3501 and t3507
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t3203-branch-output.sh')
-rwxr-xr-xt/t3203-branch-output.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t3203-branch-output.sh b/t/t3203-branch-output.sh
index 4ef7d0911..6b7c118e4 100755
--- a/t/t3203-branch-output.sh
+++ b/t/t3203-branch-output.sh
@@ -72,10 +72,10 @@ cat >expect <<'EOF'
branch-two
master
EOF
-test_expect_success C_LOCALE_OUTPUT 'git branch shows detached HEAD properly' '
+test_expect_success 'git branch shows detached HEAD properly' '
git checkout HEAD^0 &&
git branch >actual &&
- test_cmp expect actual
+ test_i18ncmp expect actual
'
test_done