From: Johan Herland Date: Tue, 9 Nov 2010 21:49:43 +0000 (+0100) Subject: (trivial) t3303: Indent with tabs instead of spaces for consistency X-Git-Tag: v1.7.4-rc0~82^2~16 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=32a36b4d6f3207f5c01e928085b13af87bf223a1;p=git.git (trivial) t3303: Indent with tabs instead of spaces for consistency The rest of the file uses tabs for indenting. Fix the one function that doesn't. Signed-off-by: Johan Herland Signed-off-by: Junio C Hamano --- diff --git a/t/t3303-notes-subtrees.sh b/t/t3303-notes-subtrees.sh index 75ec18778..d571708ff 100755 --- a/t/t3303-notes-subtrees.sh +++ b/t/t3303-notes-subtrees.sh @@ -168,15 +168,15 @@ INPUT_END } verify_concatenated_notes () { - git log | grep "^ " > output && - i=$number_of_commits && - while [ $i -gt 0 ]; do - echo " commit #$i" && - echo " first note for commit #$i" && - echo " second note for commit #$i" && - i=$(($i-1)); - done > expect && - test_cmp expect output + git log | grep "^ " > output && + i=$number_of_commits && + while [ $i -gt 0 ]; do + echo " commit #$i" && + echo " first note for commit #$i" && + echo " second note for commit #$i" && + i=$(($i-1)); + done > expect && + test_cmp expect output } test_expect_success 'test notes in no fanout concatenated with 2/38-fanout' 'test_concatenated_notes "s|^..|&/|" ""'