summaryrefslogtreecommitdiff
path: root/t/chainlint/loop-in-if.test
diff options
context:
space:
mode:
Diffstat (limited to 't/chainlint/loop-in-if.test')
-rw-r--r--t/chainlint/loop-in-if.test6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/chainlint/loop-in-if.test b/t/chainlint/loop-in-if.test
index 93e8ba8..dfcc3f9 100644
--- a/t/chainlint/loop-in-if.test
+++ b/t/chainlint/loop-in-if.test
@@ -3,13 +3,13 @@
then
while true
do
-# LINT: missing "&&" on 'echo'
+# LINT: missing "&&" on "echo"
echo "pop"
echo "glup"
-# LINT: missing "&&" on 'done'
+# LINT: missing "&&" on "done"
done
foo
-# LINT: missing "&&" on 'fi'
+# LINT: missing "&&" on "fi"
fi
bar
)