summaryrefslogtreecommitdiff
path: root/t/t6050-replace.sh
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2018-11-10 05:16:15 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-11-12 05:47:10 (GMT)
commit674ba34038568e36090c6c4c616a3266c8b6459e (patch)
tree39efb561dcb2704ec745566a1f45821267fdc82c /t/t6050-replace.sh
parentbbb15c5193868a28f4eab4e1878af0f343e7d7c9 (diff)
downloadgit-674ba34038568e36090c6c4c616a3266c8b6459e.zip
git-674ba34038568e36090c6c4c616a3266c8b6459e.tar.gz
git-674ba34038568e36090c6c4c616a3266c8b6459e.tar.bz2
fsck: mark strings for translation
Two die() are updated to start with lowercase to be consistent with the rest. Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t6050-replace.sh')
-rwxr-xr-xt/t6050-replace.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t6050-replace.sh b/t/t6050-replace.sh
index 86374a9..7700a8e 100755
--- a/t/t6050-replace.sh
+++ b/t/t6050-replace.sh
@@ -133,8 +133,8 @@ test_expect_success 'tag replaced commit' '
test_expect_success '"git fsck" works' '
git fsck master >fsck_master.out &&
- grep "dangling commit $R" fsck_master.out &&
- grep "dangling tag $(cat .git/refs/tags/mytag)" fsck_master.out &&
+ test_i18ngrep "dangling commit $R" fsck_master.out &&
+ test_i18ngrep "dangling tag $(cat .git/refs/tags/mytag)" fsck_master.out &&
test -z "$(git fsck)"
'