]> git.ipfire.org Git - thirdparty/git.git/commitdiff
bundle tests: use ">file" not ": >file"
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>
Wed, 21 Jul 2021 23:53:28 +0000 (01:53 +0200)
committerJunio C Hamano <gitster@pobox.com>
Thu, 22 Jul 2021 20:29:30 +0000 (13:29 -0700)
Change uses of ":" on the LHS of a ">" to the more commonly used
">file" pattern in t/t5607-clone-bundle.sh.

Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t5607-clone-bundle.sh

index f4c383cd5ce770aeafb874a48748445a8bec247a..c9323a08fe8f8e769eef3bea5b4cc5d79c91c285 100755 (executable)
@@ -54,14 +54,14 @@ test_expect_success 'bundle --stdin <rev-list options>' '
 '
 
 test_expect_success 'empty bundle file is rejected' '
-       >empty-bundle &&
+       >empty-bundle &&
        test_must_fail git fetch empty-bundle
 '
 
 # This triggers a bug in older versions where the resulting line (with
 # --pretty=oneline) was longer than a 1024-char buffer.
 test_expect_success 'ridiculously long subject in boundary' '
-       >file4 &&
+       >file4 &&
        test_tick &&
        git add file4 &&
        printf "%01200d\n" 0 | git commit -F - &&
@@ -75,7 +75,7 @@ test_expect_success 'ridiculously long subject in boundary' '
 '
 
 test_expect_success 'prerequisites with an empty commit message' '
-       >file1 &&
+       >file1 &&
        git add file1 &&
        test_tick &&
        git commit --allow-empty-message -m "" &&