summaryrefslogtreecommitdiffstats
path: root/t/t7201-co.sh
diff options
context:
space:
mode:
authorCharvi Mendiratta <charvi077@gmail.com>2020-10-20 13:43:17 +0200
committerJunio C Hamano <gitster@pobox.com>2020-10-22 19:37:54 +0200
commitc327762f812788b13279fbcb14774151240e82b7 (patch)
treec23518dd0b0ab163d34e35001b0f2b54342db752 /t/t7201-co.sh
parentt7102,t7201: remove unnecessary blank spaces in test body (diff)
downloadgit-c327762f812788b13279fbcb14774151240e82b7.tar.xz
git-c327762f812788b13279fbcb14774151240e82b7.zip
t7102,t7201: remove whitespace after redirect operator
According to Documentation/CodingGuidelines, redirect operator is written with space before, but no space after them. Let's remove these whitespaces after redirect operators. Signed-off-by: Charvi Mendiratta <charvi077@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t7201-co.sh')
-rwxr-xr-xt/t7201-co.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/t/t7201-co.sh b/t/t7201-co.sh
index b527f8009c..74553f991b 100755
--- a/t/t7201-co.sh
+++ b/t/t7201-co.sh
@@ -33,7 +33,7 @@ fill () {
test_expect_success setup '
- fill x y z > same &&
+ fill x y z >same &&
fill 1 2 3 4 5 6 7 8 >one &&
fill a b c d e >two &&
git add same one two &&
@@ -55,7 +55,7 @@ test_expect_success setup '
git checkout -b simple master &&
rm -f one &&
- fill a c e > two &&
+ fill a c e >two &&
git commit -a -m "Simple D one, M two" &&
git checkout master
@@ -95,7 +95,7 @@ test_expect_success 'checkout -m with dirty tree' '
git clean -f &&
fill 0 1 2 3 4 5 6 7 8 >one &&
- git checkout -m side > messages &&
+ git checkout -m side >messages &&
test "$(git symbolic-ref HEAD)" = "refs/heads/side" &&
@@ -159,7 +159,7 @@ test_expect_success 'checkout -m with merge conflict' '
test_expect_success 'format of merge conflict from checkout -m' '
git checkout -f master && git clean -f &&
- fill b d > two &&
+ fill b d >two &&
git checkout -m simple &&
git ls-files >current &&
@@ -182,7 +182,7 @@ test_expect_success 'format of merge conflict from checkout -m' '
test_expect_success 'checkout --merge --conflict=diff3 <branch>' '
git checkout -f master && git reset --hard && git clean -f &&
- fill b d > two &&
+ fill b d >two &&
git checkout --merge --conflict=diff3 simple &&
cat <<-EOF >expect &&