diff options
Diffstat (limited to 'third_party/git/t/t4061-diff-indent.sh')
-rwxr-xr-x | third_party/git/t/t4061-diff-indent.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/git/t/t4061-diff-indent.sh b/third_party/git/t/t4061-diff-indent.sh index 2affd7a10099..0f7a6d97a8b7 100755 --- a/third_party/git/t/t4061-diff-indent.sh +++ b/third_party/git/t/t4061-diff-indent.sh @@ -17,7 +17,7 @@ compare_diff () { # Compare blame output using the expectation for a diff as reference. # Only look for the lines coming from non-boundary commits. compare_blame () { - sed -n -e "1,4d" -e "s/^\+//p" <"$1" >.tmp-1 + sed -n -e "1,4d" -e "s/^+//p" <"$1" >.tmp-1 sed -ne "s/^[^^][^)]*) *//p" <"$2" >.tmp-2 test_cmp .tmp-1 .tmp-2 && rm -f .tmp-1 .tmp-2 } |