Skip to content

Commit 78fafbb

Browse files
mplatingsgitster
authored andcommitted
t8014: remove unnecessary braces
Signed-off-by: Michael Platings <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 07a54dc commit 78fafbb

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

t/t8014-blame-ignore-fuzzy.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -298,28 +298,28 @@ EOF
298298
last_test=13
299299

300300
test_expect_success setup '
301-
{ for i in $(test_seq 2 $last_test)
301+
for i in $(test_seq 2 $last_test)
302302
do
303303
# Append each line in a separate commit to make it easy to
304304
# check which original line the blame output relates to.
305305
306306
line_count=0 &&
307-
{ while IFS= read line
307+
while IFS= read line
308308
do
309309
line_count=$((line_count+1)) &&
310310
echo "$line" >>"$i" &&
311311
git add "$i" &&
312312
test_tick &&
313313
GIT_AUTHOR_NAME="$line_count" git commit -m "$line_count"
314-
done } <"a$i"
315-
done } &&
314+
done <"a$i"
315+
done &&
316316
317-
{ for i in $(test_seq 2 $last_test)
317+
for i in $(test_seq 2 $last_test)
318318
do
319319
# Overwrite the files with the final content.
320320
cp b$i $i &&
321321
git add $i
322-
done } &&
322+
done &&
323323
test_tick &&
324324
325325
# Commit the final content all at once so it can all be

0 commit comments

Comments
 (0)