summaryrefslogtreecommitdiff
path: root/t/t3400-rebase.sh
diff options
context:
space:
mode:
authorRamkumar Ramachandra <artagnon@gmail.com>2011-12-08 13:10:17 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-12-09 00:02:26 (GMT)
commit02380389c6d4656c0cc94d33f9811636cb5953e4 (patch)
tree254dd6b28a2f2e4da8aae2c817212e253688591a /t/t3400-rebase.sh
parent2f139044f96227deb8332942627a04b29c70c2bf (diff)
downloadgit-02380389c6d4656c0cc94d33f9811636cb5953e4.zip
git-02380389c6d4656c0cc94d33f9811636cb5953e4.tar.gz
git-02380389c6d4656c0cc94d33f9811636cb5953e4.tar.bz2
test: fix '&&' chaining
Breaks in a test assertion's && chain can potentially hide failures from earlier commands in the chain by adding " &&" at the end of line to the commands that need them. Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com> Acked-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t3400-rebase.sh')
-rwxr-xr-xt/t3400-rebase.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t3400-rebase.sh b/t/t3400-rebase.sh
index 6eaecec..c355533 100755
--- a/t/t3400-rebase.sh
+++ b/t/t3400-rebase.sh
@@ -172,8 +172,8 @@ test_expect_success 'fail when upstream arg is missing and not configured' '
test_expect_success 'default to @{upstream} when upstream arg is missing' '
git checkout -b default topic &&
- git config branch.default.remote .
- git config branch.default.merge refs/heads/master
+ git config branch.default.remote . &&
+ git config branch.default.merge refs/heads/master &&
git rebase &&
test "$(git rev-parse default~1)" = "$(git rev-parse master)"
'