Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
t8014: remove unnecessary braces
author
Michael Platings
<michael@platin.gs>
Sun, 30 Jun 2019 18:17:32 +0000
(19:17 +0100)
committer
Junio C Hamano
<gitster@pobox.com>
Mon, 1 Jul 2019 18:05:51 +0000
(11:05 -0700)
Signed-off-by: Michael Platings <michael@platin.gs>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t8014-blame-ignore-fuzzy.sh
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
07a54dc
)
diff --git
a/t/t8014-blame-ignore-fuzzy.sh
b/t/t8014-blame-ignore-fuzzy.sh
index 6f1a94caef223cf037ab4e79754e27c2c5e53a6a..6e61882b6f59c2b66b43e01c753c3a9bb8bbd70e 100755
(executable)
--- a/
t/t8014-blame-ignore-fuzzy.sh
+++ b/
t/t8014-blame-ignore-fuzzy.sh
@@
-298,28
+298,28
@@
EOF
last_test=13
test_expect_success setup '
last_test=13
test_expect_success setup '
-
{
for i in $(test_seq 2 $last_test)
+ for i in $(test_seq 2 $last_test)
do
# Append each line in a separate commit to make it easy to
# check which original line the blame output relates to.
line_count=0 &&
do
# Append each line in a separate commit to make it easy to
# check which original line the blame output relates to.
line_count=0 &&
-
{
while IFS= read line
+ while IFS= read line
do
line_count=$((line_count+1)) &&
echo "$line" >>"$i" &&
git add "$i" &&
test_tick &&
GIT_AUTHOR_NAME="$line_count" git commit -m "$line_count"
do
line_count=$((line_count+1)) &&
echo "$line" >>"$i" &&
git add "$i" &&
test_tick &&
GIT_AUTHOR_NAME="$line_count" git commit -m "$line_count"
- done
}
<"a$i"
- done
}
&&
+ done <"a$i"
+ done &&
-
{
for i in $(test_seq 2 $last_test)
+ for i in $(test_seq 2 $last_test)
do
# Overwrite the files with the final content.
cp b$i $i &&
git add $i
do
# Overwrite the files with the final content.
cp b$i $i &&
git add $i
- done
}
&&
+ done &&
test_tick &&
# Commit the final content all at once so it can all be
test_tick &&
# Commit the final content all at once so it can all be