aboutsummaryrefslogtreecommitdiffstats
path: root/t/t1310-config-default.sh
diff options
context:
space:
mode:
Diffstat (limited to 't/t1310-config-default.sh')
-rwxr-xr-xt/t1310-config-default.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/t/t1310-config-default.sh b/t/t1310-config-default.sh
index 09b10c144b..69e64c6c86 100755
--- a/t/t1310-config-default.sh
+++ b/t/t1310-config-default.sh
@@ -2,7 +2,6 @@
test_description='Test git config in different settings (with --default)'
-TEST_PASSES_SANITIZE_LEAK=true
. ./test-lib.sh
test_expect_success 'uses --default when entry missing' '
@@ -26,12 +25,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