Skip to content

Commit

Permalink
(trivial) t3303: Indent with tabs instead of spaces for consistency
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Johan Herland authored and Junio C Hamano committed Nov 17, 2010
1 parent 180619a commit 32a36b4
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions t/t3303-notes-subtrees.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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|^..|&/|" ""'
Expand Down

0 comments on commit 32a36b4

Please sign in to comment.