aboutsummaryrefslogtreecommitdiffstats
path: root/t/chainlint/return-loop.expect
diff options
context:
space:
mode:
Diffstat (limited to 't/chainlint/return-loop.expect')
-rw-r--r--t/chainlint/return-loop.expect10
1 files changed, 5 insertions, 5 deletions
diff --git a/t/chainlint/return-loop.expect b/t/chainlint/return-loop.expect
index cfc0549bef..da8f9abea3 100644
--- a/t/chainlint/return-loop.expect
+++ b/t/chainlint/return-loop.expect
@@ -1,5 +1,5 @@
-while test $i -lt $((num - 5))
-do
- git notes add -m "notes for commit$i" HEAD~$i || return 1
- i=$((i + 1))
-done
+2 while test $i -lt $((num - 5))
+3 do
+4 git notes add -m "notes for commit$i" HEAD~$i || return 1
+5 i=$((i + 1))
+6 done