diff options
Diffstat (limited to 'third_party/git/t/chainlint/loop-in-if.test')
-rw-r--r-- | third_party/git/t/chainlint/loop-in-if.test | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/third_party/git/t/chainlint/loop-in-if.test b/third_party/git/t/chainlint/loop-in-if.test deleted file mode 100644 index 93e8ba8e4d9a..000000000000 --- a/third_party/git/t/chainlint/loop-in-if.test +++ /dev/null @@ -1,15 +0,0 @@ -( - if true - then - while true - do -# LINT: missing "&&" on 'echo' - echo "pop" - echo "glup" -# LINT: missing "&&" on 'done' - done - foo -# LINT: missing "&&" on 'fi' - fi - bar -) |