summaryrefslogtreecommitdiff
path: root/t/t7001-mv.sh
diff options
context:
space:
mode:
authorShubham Verma <shubhunic@gmail.com>2021-02-11 19:46:59 (GMT)
committerJunio C Hamano <gitster@pobox.com>2021-02-11 21:42:16 (GMT)
commitdd72154149a48120f135de28b0202ac5de34d17b (patch)
tree74ae743b38fffaa47849126baf3ad3b3343fc614 /t/t7001-mv.sh
parent9bcaeb71a63e3f13b859202813d8c95047902b27 (diff)
downloadgit-dd72154149a48120f135de28b0202ac5de34d17b.zip
git-dd72154149a48120f135de28b0202ac5de34d17b.tar.gz
git-dd72154149a48120f135de28b0202ac5de34d17b.tar.bz2
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 <shubhunic@gmail.com> Reviewed-by: Eric Sunshine <sunshine@sunshineco.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t7001-mv.sh')
-rwxr-xr-xt/t7001-mv.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/t7001-mv.sh b/t/t7001-mv.sh
index a4a14a3..02fbc90 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) &&