aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTaylor Blau <me@ttaylorr.com>2024-10-30 13:08:05 -0400
committerTaylor Blau <me@ttaylorr.com>2024-10-30 13:08:05 -0400
commitcec4461e3fd660f4de9d64fc1cc99e6e36dc3980 (patch)
treecf08035dc77fdeb66bc9294501b7934f4504e076
parent99478039266cebdb3e2908b954e5ee8e0922b31c (diff)
parenta73070fbd45e7628da2d3287b17349d928b593cf (diff)
downloadgit-cec4461e3fd660f4de9d64fc1cc99e6e36dc3980.tar.gz
Merge branch 'ks/t4205-fixup'
Testfix. * ks/t4205-fixup: t4205: fix typo in 'NUL termination with --stat'
-rwxr-xr-xt/t4205-log-pretty-formats.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t4205-log-pretty-formats.sh b/t/t4205-log-pretty-formats.sh
index eb63ce011f..57b8b79738 100755
--- a/t/t4205-log-pretty-formats.sh
+++ b/t/t4205-log-pretty-formats.sh
@@ -137,7 +137,7 @@ test_expect_success 'NUL separation with --stat' '
test_expect_failure 'NUL termination with --stat' '
stat0_part=$(git diff --stat HEAD^ HEAD) &&
stat1_part=$(git diff-tree --no-commit-id --stat --root HEAD^) &&
- printf "add bar\n$stat0_part\n\0$(commit_msg)\n$stat1_part\n0" >expected &&
+ printf "add bar\n$stat0_part\n\0$(commit_msg)\n$stat1_part\n\0" >expected &&
git log -z --stat --pretty="tformat:%s" >actual &&
test_cmp expected actual
'