aboutsummaryrefslogtreecommitdiffstats
path: root/t/chainlint/if-in-loop.expect
diff options
context:
space:
mode:
Diffstat (limited to 't/chainlint/if-in-loop.expect')
-rw-r--r--t/chainlint/if-in-loop.expect24
1 files changed, 12 insertions, 12 deletions
diff --git a/t/chainlint/if-in-loop.expect b/t/chainlint/if-in-loop.expect
index d6514ae749..ff8c60dbdb 100644
--- a/t/chainlint/if-in-loop.expect
+++ b/t/chainlint/if-in-loop.expect
@@ -1,12 +1,12 @@
-(
- for i in a b c
- do
- if false
- then
- echo "err"
- exit 1
- fi ?!AMP?!
- foo
- done ?!AMP?!
- bar
-)
+2 (
+3 for i in a b c
+4 do
+5 if false
+6 then
+7 echo "err"
+8 exit 1
+9 fi ?!AMP?!
+10 foo
+11 done ?!AMP?!
+12 bar
+13 )