summaryrefslogtreecommitdiff
path: root/t/aggregate-results.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-07-16 15:42:52 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-07-16 15:42:52 (GMT)
commit300072f486797232014b2c8a1655424099508679 (patch)
treebdce452aba30cd53fcb3c2a1ee7739f5fe112943 /t/aggregate-results.sh
parent3901a8c86645063c06dd81f12968012cbc697304 (diff)
downloadgit-300072f486797232014b2c8a1655424099508679.zip
git-300072f486797232014b2c8a1655424099508679.tar.gz
git-300072f486797232014b2c8a1655424099508679.tar.bz2
t/aggregate-results: whitespace fix
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/aggregate-results.sh')
-rwxr-xr-xt/aggregate-results.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/t/aggregate-results.sh b/t/aggregate-results.sh
index 52e88e3..d5bab75 100755
--- a/t/aggregate-results.sh
+++ b/t/aggregate-results.sh
@@ -10,9 +10,9 @@ for file
do
while read type value
do
- case $type in
- '')
- continue ;;
+ case $type in
+ '')
+ continue ;;
fixed)
fixed=$(($fixed + $value)) ;;
success)
@@ -20,9 +20,9 @@ do
failed)
failed=$(($failed + $value)) ;;
broken)
- broken=$(( $broken + $value)) ;;
+ broken=$(($broken + $value)) ;;
total)
- total=$(( $total + $value)) ;;
+ total=$(($total + $value)) ;;
esac
done <"$file"
done