t0005: fix broken &&-chains
[gitweb.git] / t / t4104-apply-boundary.sh
index c617c2a33d8e8ac1dc7e049f9056ca6025fbf852..497afdc6b4903dab3e60cef056ca1cd1b389ced4 100755 (executable)
@@ -18,7 +18,7 @@ test_expect_success setup '
        cat victim >original &&
        git update-index --add victim &&
 
-       : add to the head
+       # add to the head
        for i in a b '"$L"' y
        do
                echo $i
@@ -27,7 +27,7 @@ test_expect_success setup '
        git diff victim >add-a-patch.with &&
        git diff --unified=0 >add-a-patch.without &&
 
-       : insert at line two
+       # insert at line two
        for i in b a '"$L"' y
        do
                echo $i
@@ -36,7 +36,7 @@ test_expect_success setup '
        git diff victim >insert-a-patch.with &&
        git diff --unified=0 >insert-a-patch.without &&
 
-       : modify at the head
+       # modify at the head
        for i in a '"$L"' y
        do
                echo $i
@@ -45,16 +45,16 @@ test_expect_success setup '
        git diff victim >mod-a-patch.with &&
        git diff --unified=0 >mod-a-patch.without &&
 
-       : remove from the head
+       # remove from the head
        for i in '"$L"' y
        do
                echo $i
        done >victim &&
        cat victim >del-a-expect &&
-       git diff victim >del-a-patch.with
+       git diff victim >del-a-patch.with &&
        git diff --unified=0 >del-a-patch.without &&
 
-       : add to the tail
+       # add to the tail
        for i in b '"$L"' y z
        do
                echo $i
@@ -63,7 +63,7 @@ test_expect_success setup '
        git diff victim >add-z-patch.with &&
        git diff --unified=0 >add-z-patch.without &&
 
-       : modify at the tail
+       # modify at the tail
        for i in b '"$L"' z
        do
                echo $i
@@ -72,16 +72,16 @@ test_expect_success setup '
        git diff victim >mod-z-patch.with &&
        git diff --unified=0 >mod-z-patch.without &&
 
-       : remove from the tail
+       # remove from the tail
        for i in b '"$L"'
        do
                echo $i
        done >victim &&
        cat victim >del-z-expect &&
-       git diff victim >del-z-patch.with
-       git diff --unified=0 >del-z-patch.without &&
+       git diff victim >del-z-patch.with &&
+       git diff --unified=0 >del-z-patch.without
 
-       : done
+       # done
 '
 
 for with in with without