]> git.ipfire.org Git - thirdparty/git.git/commitdiff
t7001: remove whitespace after redirect operators
authorShubham Verma <shubhunic@gmail.com>
Thu, 11 Feb 2021 19:46:59 +0000 (01:16 +0530)
committerJunio C Hamano <gitster@pobox.com>
Thu, 11 Feb 2021 21:42:16 +0000 (13:42 -0800)
According to Documentation/CodingGuidelines, there should be no
whitespace after redirect operators. So, we should remove these
whitespaces after redirect operators.

Signed-off-by: Shubham Verma <shubhunic@gmail.com>
Reviewed-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t7001-mv.sh

index a4a14a3b2e22172df1244226978cb19d0aa8062d..02fbc90dea36371e138817272b547529d9caddf0 100755 (executable)
@@ -156,9 +156,9 @@ test_expect_success "Michael Cassar's test case" '
        rm -fr .git papers partA &&
        git init &&
        mkdir -p papers/unsorted papers/all-papers partA &&
-       echo a > papers/unsorted/Thesis.pdf &&
-       echo b > partA/outline.txt &&
-       echo c > papers/unsorted/_another &&
+       echo a >papers/unsorted/Thesis.pdf &&
+       echo b >partA/outline.txt &&
+       echo c >papers/unsorted/_another &&
        git add papers partA &&
        T1=$(git write-tree) &&