aboutsummaryrefslogtreecommitdiffstats
path: root/t/chainlint/nested-loop-detect-failure.expect
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2023-12-27 14:52:25 -0800
committerJunio C Hamano <gitster@pobox.com>2023-12-27 14:52:25 -0800
commitf6a129ceaf0b9a1e294fcb5abdaad3885b3a391d (patch)
treee60e993371e9fae3de9e41860d40cc60a1d25486 /t/chainlint/nested-loop-detect-failure.expect
parentMerge branch 'rs/show-ref-incompatible-options' (diff)
parenttests: adjust whitespace in chainlint expectations (diff)
downloadgit-f6a129ceaf0b9a1e294fcb5abdaad3885b3a391d.tar.gz
git-f6a129ceaf0b9a1e294fcb5abdaad3885b3a391d.zip
Merge branch 'ps/chainlint-self-check-update'
Test framework update. * ps/chainlint-self-check-update: tests: adjust whitespace in chainlint expectations
Diffstat (limited to 't/chainlint/nested-loop-detect-failure.expect')
-rw-r--r--t/chainlint/nested-loop-detect-failure.expect24
1 files changed, 12 insertions, 12 deletions
diff --git a/t/chainlint/nested-loop-detect-failure.expect b/t/chainlint/nested-loop-detect-failure.expect
index 4793a0e8e1..3461df40e5 100644
--- a/t/chainlint/nested-loop-detect-failure.expect
+++ b/t/chainlint/nested-loop-detect-failure.expect
@@ -1,31 +1,31 @@
-for i in 0 1 2 3 4 5 6 7 8 9 ;
+for i in 0 1 2 3 4 5 6 7 8 9;
do
- for j in 0 1 2 3 4 5 6 7 8 9 ;
+ for j in 0 1 2 3 4 5 6 7 8 9;
do
- echo "$i$j" > "path$i$j" ?!LOOP?!
+ echo "$i$j" >"path$i$j" ?!LOOP?!
done ?!LOOP?!
done &&
-for i in 0 1 2 3 4 5 6 7 8 9 ;
+for i in 0 1 2 3 4 5 6 7 8 9;
do
- for j in 0 1 2 3 4 5 6 7 8 9 ;
+ for j in 0 1 2 3 4 5 6 7 8 9;
do
- echo "$i$j" > "path$i$j" || return 1
+ echo "$i$j" >"path$i$j" || return 1
done
done &&
-for i in 0 1 2 3 4 5 6 7 8 9 ;
+for i in 0 1 2 3 4 5 6 7 8 9;
do
- for j in 0 1 2 3 4 5 6 7 8 9 ;
+ for j in 0 1 2 3 4 5 6 7 8 9;
do
- echo "$i$j" > "path$i$j" ?!LOOP?!
+ echo "$i$j" >"path$i$j" ?!LOOP?!
done || return 1
done &&
-for i in 0 1 2 3 4 5 6 7 8 9 ;
+for i in 0 1 2 3 4 5 6 7 8 9;
do
- for j in 0 1 2 3 4 5 6 7 8 9 ;
+ for j in 0 1 2 3 4 5 6 7 8 9;
do
- echo "$i$j" > "path$i$j" || return 1
+ echo "$i$j" >"path$i$j" || return 1
done || return 1
done