]> git.ipfire.org Git - thirdparty/git.git/blobdiff - t/t4106-apply-stdin.sh
Merge branch 'en/fetch-negotiation-default-fix'
[thirdparty/git.git] / t / t4106-apply-stdin.sh
index a57a318699e8989e29e07e4f7559a3656ab42523..5c150f3b0b23913ac9b515820431a5651a1b8726 100755 (executable)
@@ -20,7 +20,10 @@ test_expect_success 'git apply --numstat - < patch' '
 '
 
 test_expect_success 'git apply --numstat - < patch patch' '
-       for i in 1 2; do echo "1        1       text"; done >expect &&
+       cat >expect <<-\EOF &&
+       1       1       text
+       1       1       text
+       EOF
        git apply --numstat - < patch patch >actual &&
        test_cmp expect actual
 '