aboutsummaryrefslogtreecommitdiffstats
path: root/t/t1310-config-default.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2023-11-08 11:04:02 +0900
committerJunio C Hamano <gitster@pobox.com>2023-11-08 11:04:02 +0900
commita8e2394704d0543f4e1f1ac6ea532d098316d97e (patch)
tree9120b53b6c93bb8db02997cb446a4311a7e21311 /t/t1310-config-default.sh
parentMerge branch 'la/strvec-header-fix' (diff)
parenttests: teach callers of test_i18ngrep to use test_grep (diff)
downloadgit-a8e2394704d0543f4e1f1ac6ea532d098316d97e.tar.gz
git-a8e2394704d0543f4e1f1ac6ea532d098316d97e.zip
Merge branch 'jc/test-i18ngrep'
Another step to deprecate test_i18ngrep. * jc/test-i18ngrep: tests: teach callers of test_i18ngrep to use test_grep test framework: further deprecate test_i18ngrep
Diffstat (limited to 't/t1310-config-default.sh')
-rwxr-xr-xt/t1310-config-default.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t1310-config-default.sh b/t/t1310-config-default.sh
index 09b10c144b..1a90d31201 100755
--- a/t/t1310-config-default.sh
+++ b/t/t1310-config-default.sh
@@ -26,12 +26,12 @@ test_expect_success 'canonicalizes --default with appropriate type' '
test_expect_success 'dies when --default cannot be parsed' '
test_must_fail git config -f config --type=expiry-date --default=x --get \
not.a.section 2>error &&
- test_i18ngrep "failed to format default config value" error
+ test_grep "failed to format default config value" error
'
test_expect_success 'does not allow --default without --get' '
test_must_fail git config --default=quux --unset a.section >output 2>&1 &&
- test_i18ngrep "\-\-default is only applicable to" output
+ test_grep "\-\-default is only applicable to" output
'
test_done