summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohan Herland <johan@herland.net>2010-11-09 21:49:43 (GMT)
committerJunio C Hamano <gitster@pobox.com>2010-11-17 21:21:29 (GMT)
commit32a36b4d6f3207f5c01e928085b13af87bf223a1 (patch)
tree25786fc7be8c854d839d17bb47bc14f5cd0ac66c
parent180619a58572b17de0ebeb96989e0aa832765186 (diff)
downloadgit-32a36b4d6f3207f5c01e928085b13af87bf223a1.zip
git-32a36b4d6f3207f5c01e928085b13af87bf223a1.tar.gz
git-32a36b4d6f3207f5c01e928085b13af87bf223a1.tar.bz2
(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 <johan@herland.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-xt/t3303-notes-subtrees.sh18
1 files changed, 9 insertions, 9 deletions
diff --git a/t/t3303-notes-subtrees.sh b/t/t3303-notes-subtrees.sh
index 75ec187..d571708 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|^..|&/|" ""'