t8014: remove unnecessary braces

Signed-off-by: Michael Platings <michael@platin.gs>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Michael Platings 2019-06-30 19:17:32 +01:00 committed by Junio C Hamano
parent 07a54dc307
commit 78fafbb280

View file

@ -298,28 +298,28 @@ EOF
last_test=13 last_test=13
test_expect_success setup ' test_expect_success setup '
{ for i in $(test_seq 2 $last_test) for i in $(test_seq 2 $last_test)
do do
# Append each line in a separate commit to make it easy to # Append each line in a separate commit to make it easy to
# check which original line the blame output relates to. # check which original line the blame output relates to.
line_count=0 && line_count=0 &&
{ while IFS= read line while IFS= read line
do do
line_count=$((line_count+1)) && line_count=$((line_count+1)) &&
echo "$line" >>"$i" && echo "$line" >>"$i" &&
git add "$i" && git add "$i" &&
test_tick && test_tick &&
GIT_AUTHOR_NAME="$line_count" git commit -m "$line_count" GIT_AUTHOR_NAME="$line_count" git commit -m "$line_count"
done } <"a$i" done <"a$i"
done } && done &&
{ for i in $(test_seq 2 $last_test) for i in $(test_seq 2 $last_test)
do do
# Overwrite the files with the final content. # Overwrite the files with the final content.
cp b$i $i && cp b$i $i &&
git add $i git add $i
done } && done &&
test_tick && test_tick &&
# Commit the final content all at once so it can all be # Commit the final content all at once so it can all be