From: Shubham Verma Date: Thu, 11 Feb 2021 19:46:59 +0000 (+0530) Subject: t7001: remove whitespace after redirect operators X-Git-Tag: v2.31.0-rc1~6^2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dd72154149a48120f135de28b0202ac5de34d17b;p=thirdparty%2Fgit.git t7001: remove whitespace after redirect operators 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 Reviewed-by: Eric Sunshine Signed-off-by: Junio C Hamano --- diff --git a/t/t7001-mv.sh b/t/t7001-mv.sh index a4a14a3b2e..02fbc90dea 100755 --- a/t/t7001-mv.sh +++ b/t/t7001-mv.sh @@ -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) &&