t4205: indent here documents
commit9d1ca1dac0ebfd6e17d73e33b2d173926c139c2d
authorJeff King <peff@peff.net>
Wed, 27 Jul 2016 18:55:23 +0000 (27 14:55 -0400)
committerJunio C Hamano <gitster@pobox.com>
Wed, 27 Jul 2016 19:28:16 +0000 (27 12:28 -0700)
treec9700857847de94bed5ac7998bb6cfd2bcc18fbf
parent1bd37509cac35877761a21c0654eba18fb5a73ad
t4205: indent here documents

Our usual style in the test scripts is to indent here
documents with tabs, and use "<<-" to strip the tabs. The
result is easier to read.

This old test script did not do so in its inception, and
further tests added onto it followed the local style. Let's
bring it in line with our usual style.

Some of the tests actually care quite a bit about
whitespace, but none of them do so at the beginning of the
line (because they use things like qz_to_tab_space to avoid
depending on the literal whitespace), so we can do a fairly
mechanical conversion.

Most of the here-docs also use interpolation, so they have
been left as "<<-EOF". In a few cases, though, where
interpolation was not in use, I've converted them to
"<<-\EOF" to match our usual "don't interpolate unless you
need to" style.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t4205-log-pretty-formats.sh