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-05-25 05:39:38 +0300
committerJunio C Hamano <gitster@pobox.com>2020-05-25 05:39:38 +0300
commitf37d9598789af3964ed37b855fabbfab84088bc2 (patch)
tree8343461288f530b1678580d20226ed495069174e /t
parent4cf237c0d4cc17a1a49023eb0b3a4051b8978450 (diff)
parent784ce03d5566194880b022f849bb58711c479ef3 (diff)
Merge branch 'gs/commit-graph-path-filter'
Test fix. * gs/commit-graph-path-filter: t4216: avoid unnecessary subshell in test_bloom_filters_not_used
Diffstat (limited to 't')
-rwxr-xr-xt/t4216-log-bloom.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t4216-log-bloom.sh b/t/t4216-log-bloom.sh
index 21b68dd6c8..c855bcd3e7 100755
--- a/t/t4216-log-bloom.sh
+++ b/t/t4216-log-bloom.sh
@@ -70,7 +70,7 @@ test_bloom_filters_used () {
test_bloom_filters_not_used () {
log_args=$1
setup "$log_args" &&
- !(grep -q "statistics:{\"filter_not_present\":" "$TRASH_DIRECTORY/trace.perf") &&
+ ! grep -q "statistics:{\"filter_not_present\":" "$TRASH_DIRECTORY/trace.perf" &&
test_cmp log_wo_bloom log_w_bloom
}