From: Junio C Hamano Date: Wed, 16 Jul 2008 15:42:52 +0000 (-0700) Subject: t/aggregate-results: whitespace fix X-Git-Tag: v1.6.0-rc0~49 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=300072f486797232014b2c8a1655424099508679;p=git.git t/aggregate-results: whitespace fix Signed-off-by: Junio C Hamano --- diff --git a/t/aggregate-results.sh b/t/aggregate-results.sh index 52e88e304..d5bab75d7 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