summaryrefslogtreecommitdiff
path: root/t/chainlint/for-loop.expect
diff options
context:
space:
mode:
Diffstat (limited to 't/chainlint/for-loop.expect')
-rw-r--r--t/chainlint/for-loop.expect8
1 files changed, 4 insertions, 4 deletions
diff --git a/t/chainlint/for-loop.expect b/t/chainlint/for-loop.expect
index c33cf56..6671b8c 100644
--- a/t/chainlint/for-loop.expect
+++ b/t/chainlint/for-loop.expect
@@ -1,11 +1,11 @@
(
for i in a b c
do
-?!AMP?! echo $i
- cat
-?!AMP?! done
+ echo $i ?!AMP?!
+ cat <<-EOF
+ done ?!AMP?!
for i in a b c; do
echo $i &&
cat $i
done
->)
+)