From: "Ævar Arnfjörð Bjarmason" <avarab@gmail.com>
To: git@vger.kernel.org
Cc: gitster@pobox.com, "Ævar Arnfjörð Bjarmason" <avarab@gmail.com>
Subject: [PATCH 3/3] t/t5400-send-pack.sh: re-indent subshell invocation
Date: Tue, 18 Jan 2011 22:41:36 +0100 [thread overview]
Message-ID: <1295386896-21828-3-git-send-email-avarab@gmail.com> (raw)
In-Reply-To: <1295386896-21828-1-git-send-email-avarab@gmail.com>
Change a subshell invocation in t/t5400-send-pack.sh to use one line
per command in the subshell, that's the usual syntax we use for tests.
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
---
t/t5400-send-pack.sh | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/t/t5400-send-pack.sh b/t/t5400-send-pack.sh
index 0357610..d4db5ac 100755
--- a/t/t5400-send-pack.sh
+++ b/t/t5400-send-pack.sh
@@ -32,7 +32,11 @@ test_expect_success setup '
done &&
git update-ref HEAD "$commit" &&
git clone ./. victim &&
- ( cd victim && git config receive.denyCurrentBranch warn && git log ) &&
+ (
+ cd victim &&
+ git config receive.denyCurrentBranch warn &&
+ git log
+ ) &&
git update-ref HEAD "$zero" &&
parent=$zero &&
i=0 &&
--
1.7.2.3
prev parent reply other threads:[~2011-01-18 21:42 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-01-18 21:41 [PATCH 1/3] t/t5400-send-pack.sh: use the canonical test_expect_success syntax Ævar Arnfjörð Bjarmason
2011-01-18 21:41 ` [PATCH 2/3] t/t5400-send-pack.sh: add test_when_finished commands Ævar Arnfjörð Bjarmason
2011-01-18 23:10 ` Junio C Hamano
2011-01-18 21:41 ` Ævar Arnfjörð Bjarmason [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1295386896-21828-3-git-send-email-avarab@gmail.com \
--to=avarab@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.