t8014: remove unnecessary braces

Signed-off-by: Michael Platings <michael@platin.gs> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Michael Platings committed Jun 30, 2019 at 19:17 UTC 78fafbb2800915047ad2f1578c34ca19c316eca2
1 file changed +6 -6
t/t8014-blame-ignore-fuzzy.sh
+6 -6
@@ -298,28 +298,28 @@ EOF
298 last_test=13
299
300 test_expect_success setup '
301 - { for i in $(test_seq 2 $last_test)
301 + for i in $(test_seq 2 $last_test)
302 do
303 # Append each line in a separate commit to make it easy to
304 # check which original line the blame output relates to.
305
306 line_count=0 &&
307 - { while IFS= read line
307 + while IFS= read line
308 do
309 line_count=$((line_count+1)) &&
310 echo "$line" >>"$i" &&
311 git add "$i" &&
312 test_tick &&
313 GIT_AUTHOR_NAME="$line_count" git commit -m "$line_count"
314 - done } <"a$i"
315 - done } &&
314 + done <"a$i"
315 + done &&
316
317 - { for i in $(test_seq 2 $last_test)
317 + for i in $(test_seq 2 $last_test)
318 do
319 # Overwrite the files with the final content.
320 cp b$i $i &&
321 git add $i
322 - done } &&
322 + done &&
323 test_tick &&
324
325 # Commit the final content all at once so it can all be