summaryrefslogtreecommitdiff
path: root/t/t4012-diff-binary.sh
diff options
context:
space:
mode:
authorAlexander Strasser <eclipse7@gmx.net>2012-07-16 22:45:10 +0200
committerJunio C Hamano <gitster@pobox.com>2012-07-16 13:50:28 -0700
commit216f25f65fe20a93d4c8264b335718a8888d007e (patch)
tree431939cd354e0dc50fd9e3134c534b343251f574 /t/t4012-diff-binary.sh
parent4220afd7238c94f33bde55cf3fd6c84275eebe9a (diff)
downloadgit-216f25f65fe20a93d4c8264b335718a8888d007e.tar.gz
t4012: Make --shortstat test more robust
The --shortstat test depends on the same scenario as the --stat test. Use the part of the same expected result for the --stat test to avoid duplicating it manually. Signed-off-by: Alexander Strasser <eclipse7@gmx.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t4012-diff-binary.sh')
-rwxr-xr-xt/t4012-diff-binary.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t4012-diff-binary.sh b/t/t4012-diff-binary.sh
index daf8234614..4767761187 100755
--- a/t/t4012-diff-binary.sh
+++ b/t/t4012-diff-binary.sh
@@ -38,9 +38,9 @@ test_expect_success 'apply --stat output for binary file change' '
'
test_expect_success 'diff --shortstat output for binary file change' '
- echo " 4 files changed, 2 insertions(+), 2 deletions(-)" >expected &&
+ tail -n 1 expected >expect &&
git diff --shortstat >current &&
- test_i18ncmp expected current
+ test_i18ncmp expect current
'
test_expect_success 'diff --shortstat output for binary file change only' '