summaryrefslogtreecommitdiffstats
path: root/t/chainlint/if-in-loop.test
diff options
context:
space:
mode:
Diffstat (limited to 't/chainlint/if-in-loop.test')
-rw-r--r--t/chainlint/if-in-loop.test6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/chainlint/if-in-loop.test b/t/chainlint/if-in-loop.test
index daf22da164..f0cf19cfad 100644
--- a/t/chainlint/if-in-loop.test
+++ b/t/chainlint/if-in-loop.test
@@ -3,13 +3,13 @@
do
if false
then
-# LINT: missing "&&" on 'echo'
+# LINT: missing "&&" on "echo"
echo "err"
exit 1
-# LINT: missing "&&" on 'fi'
+# LINT: missing "&&" on "fi"
fi
foo
-# LINT: missing "&&" on 'done'
+# LINT: missing "&&" on "done"
done
bar
)