Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2020-10-30 23:04:23 +0300
committerJunio C Hamano <gitster@pobox.com>2020-10-30 23:04:23 +0300
commit678c787c00d88d06b7dd7335f9341b3164b009f9 (patch)
tree10a884511dd2a8c29f57aee1d7ce9d58d24b475e /t
parentad27df6a5cff694add500ab8c7f97234feb4a91f (diff)
parent04b65a3bc0f81ebe4c93c0064d644c560243a54f (diff)
Merge branch 'en/t7518-unflake'
Work around flakiness in a test. * en/t7518-unflake: t7518: fix flaky grep invocation
Diffstat (limited to 't')
-rwxr-xr-xt/t7518-ident-corner-cases.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t7518-ident-corner-cases.sh b/t/t7518-ident-corner-cases.sh
index dc3e9c8c88..905957bd0a 100755
--- a/t/t7518-ident-corner-cases.sh
+++ b/t/t7518-ident-corner-cases.sh
@@ -13,7 +13,7 @@ test_expect_success 'empty name and missing email' '
sane_unset GIT_AUTHOR_EMAIL &&
GIT_AUTHOR_NAME= &&
test_must_fail git commit --allow-empty -m foo 2>err &&
- test_i18ngrep ! null err
+ test_i18ngrep ! "(null)" err
)
'