Add missing '&&' suffixes.
authorStephen Haberman <stephen@exigencecorp.com>
Fri, 3 Oct 2008 06:30:35 +0000 (01:30 -0500)
committerStephen Haberman <stephen@exigencecorp.com>
Fri, 10 Oct 2008 17:07:11 +0000 (12:07 -0500)
tests/t3200-server-post-receive-assign-commit-numbers.sh

index b4cdac3..013b3c5 100644 (file)
@@ -25,8 +25,8 @@ test_expect_success 'assign one new commit' '
        git push origin master &&
        git fetch &&
 
-       test "$(git rev-parse HEAD)" = "$(git rev-parse r/1)"
-       test "$(git describe --tags)" = "r/1"
+       test "$(git rev-parse HEAD)" = "$(git rev-parse r/1)" &&
+       test "$(git describe --tags)" = "r/1" &&
        test "$(git rev-parse HEAD) refs/heads/master" = "$(cat server/.git/commitnumbers)"
 '
 
@@ -38,10 +38,10 @@ test_expect_success 'assign two new commits' '
        git push origin master &&
        git fetch &&
 
-       test "$(git rev-parse HEAD)" = "$(git rev-parse r/3)"
-       test "$(git describe --tags)" = "r/3"
+       test "$(git rev-parse HEAD)" = "$(git rev-parse r/3)" &&
+       test "$(git describe --tags)" = "r/3" &&
 
-       test "$(git rev-parse HEAD^)" = "$(git rev-parse r/2)"
+       test "$(git rev-parse HEAD^)" = "$(git rev-parse r/2)" &&
        test "$(git describe --tags HEAD^)" = "r/2"
 '