summaryrefslogtreecommitdiffstats
path: root/t/t3419-rebase-patch-id.sh
diff options
context:
space:
mode:
authorRamkumar Ramachandra <artagnon@gmail.com>2011-12-08 18:40:17 +0530
committerJunio C Hamano <gitster@pobox.com>2011-12-08 16:02:26 -0800
commit02380389c6d4656c0cc94d33f9811636cb5953e4 (patch)
tree254dd6b28a2f2e4da8aae2c817212e253688591a /t/t3419-rebase-patch-id.sh
parent2f139044f96227deb8332942627a04b29c70c2bf (diff)
downloadgit-02380389c6d4656c0cc94d33f9811636cb5953e4.tar.gz
git-02380389c6d4656c0cc94d33f9811636cb5953e4.tar.xz
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/t3419-rebase-patch-id.sh')
-rwxr-xr-xt/t3419-rebase-patch-id.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t3419-rebase-patch-id.sh b/t/t3419-rebase-patch-id.sh
index bd8efaf00..e70ac10a0 100755
--- a/t/t3419-rebase-patch-id.sh
+++ b/t/t3419-rebase-patch-id.sh
@@ -39,7 +39,7 @@ run()
}
test_expect_success 'setup' '
- git commit --allow-empty -m initial
+ git commit --allow-empty -m initial &&
git tag root
'