Browse Source

t9402: Use TABs for indentation

Use TAB's for indentation, and wrap overlong lines.
Put the closing ' at the beginning of the line.

Signed-off-by: Torsten Bögershausen <tboegi@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Torsten Bögershausen 12 years ago committed by Junio C Hamano
parent
commit
828eff76b0
  1. 3
      t/t9402-git-cvsserver-refs.sh

3
t/t9402-git-cvsserver-refs.sh

@ -39,7 +39,8 @@ check_end_tree() { @@ -39,7 +39,8 @@ check_end_tree() {
check_end_full_tree() {
sandbox="$1" &&
sort <"$WORKDIR/list.expected" >expected &&
find "$sandbox" -name CVS -prune -o -type f -print | sed -e "s%$sandbox/%%" | sort >act1 &&
find "$sandbox" -name CVS -prune -o -type f -print |
sed -e "s%$sandbox/%%" | sort >act1 &&
test_cmp expected act1 &&
git ls-tree --name-only -r "$2" | sort >act2 &&
test_cmp expected act2 &&

Loading…
Cancel
Save