diff options
author | Jeff King <peff@peff.net> | 2008-06-14 03:27:45 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-06-14 11:39:16 -0700 |
commit | 4d9b53591f64a11da0af4c2b8f11fd4730ce52dd (patch) | |
tree | 87ba9bcc306a62256c573ed0a61ab5c5fc54dcf0 /t | |
parent | 44d86e910d61dab4f059d86705599bbb2747b10f (diff) | |
download | git-4d9b53591f64a11da0af4c2b8f11fd4730ce52dd.tar.gz git-4d9b53591f64a11da0af4c2b8f11fd4730ce52dd.tar.xz |
avoid trailing whitespace in zero-change diffstat lines
In some cases, we produce a diffstat line even though no
lines have changed (e.g., because of an exact rename). In
this case, there is no +/- "graph" after the number of
changed lines. However, we output the space separator
unconditionally, meaning that these lines contained a
trailing space character.
This isn't a huge problem, but in cleaning up the output we
are able to eliminate some trailing whitespace from a test
vector.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-x | t/t4016-diff-quote.sh | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/t/t4016-diff-quote.sh b/t/t4016-diff-quote.sh index 0950250c9..f07035ab7 100755 --- a/t/t4016-diff-quote.sh +++ b/t/t4016-diff-quote.sh @@ -53,13 +53,13 @@ test_expect_success 'git diff --summary -M HEAD' ' ' cat >expect <<\EOF - pathname.1 => "Rpathname\twith HT.0" | 0 - pathname.3 => "Rpathname\nwith LF.0" | 0 - "pathname\twith HT.3" => "Rpathname\nwith LF.1" | 0 - pathname.2 => Rpathname with SP.0 | 0 - "pathname\twith HT.2" => Rpathname with SP.1 | 0 - pathname.0 => Rpathname.0 | 0 - "pathname\twith HT.0" => Rpathname.1 | 0 + pathname.1 => "Rpathname\twith HT.0" | 0 + pathname.3 => "Rpathname\nwith LF.0" | 0 + "pathname\twith HT.3" => "Rpathname\nwith LF.1" | 0 + pathname.2 => Rpathname with SP.0 | 0 + "pathname\twith HT.2" => Rpathname with SP.1 | 0 + pathname.0 => Rpathname.0 | 0 + "pathname\twith HT.0" => Rpathname.1 | 0 7 files changed, 0 insertions(+), 0 deletions(-) EOF test_expect_success 'git diff --stat -M HEAD' ' |