Skip to content

Commit

Permalink
t/t3415: use && where applicable.
Browse files Browse the repository at this point in the history
Signed-off-by: Yann Dirson <ydirson@altern.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Yann Dirson authored and Junio C Hamano committed Oct 6, 2010
1 parent 95b7a41 commit 7c6eafa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions t/t3415-rebase-autosquash.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ test_auto_fixup() {
echo 1 >file1 &&
git add -u &&
test_tick &&
git commit -m "fixup! first"
git commit -m "fixup! first" &&

git tag $1 &&
test_tick &&
Expand Down Expand Up @@ -55,7 +55,7 @@ test_auto_squash() {
echo 1 >file1 &&
git add -u &&
test_tick &&
git commit -m "squash! first"
git commit -m "squash! first" &&

git tag $1 &&
test_tick &&
Expand Down Expand Up @@ -84,7 +84,7 @@ test_expect_success 'misspelled auto squash' '
echo 1 >file1 &&
git add -u &&
test_tick &&
git commit -m "squash! forst"
git commit -m "squash! forst" &&
git tag final-missquash &&
test_tick &&
git rebase --autosquash -i HEAD^^^ &&
Expand Down

0 comments on commit 7c6eafa

Please sign in to comment.