summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2020-05-02 22:19:21 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2020-05-03 11:00:18 +0200
commit701b88b996fb415b71b7f1828feffd95d2879612 (patch)
tree473e9dc79c4d72f3c3693d6a49eee2890de16b52
parent0a7a4d4aadcf409be9a3dfb5b60fd6297034a5d2 (diff)
downloadpylint-git-701b88b996fb415b71b7f1828feffd95d2879612.tar.gz
Remove tests related to mixed-indentation
-rw-r--r--tests/functional/m/mixed_indentation.py10
-rw-r--r--tests/functional/m/mixed_indentation.txt2
2 files changed, 0 insertions, 12 deletions
diff --git a/tests/functional/m/mixed_indentation.py b/tests/functional/m/mixed_indentation.py
deleted file mode 100644
index 724ecff7a..000000000
--- a/tests/functional/m/mixed_indentation.py
+++ /dev/null
@@ -1,10 +0,0 @@
-"""test mixed tabs and spaces"""
-from __future__ import print_function
-
-def spaces_func():
- """yo"""
- print("yo")
-
-def tab_func():
- """yo""" # [mixed-indentation]
- print("yo") # [mixed-indentation]
diff --git a/tests/functional/m/mixed_indentation.txt b/tests/functional/m/mixed_indentation.txt
deleted file mode 100644
index d4857e666..000000000
--- a/tests/functional/m/mixed_indentation.txt
+++ /dev/null
@@ -1,2 +0,0 @@
-mixed-indentation:9::Found indentation with tabs instead of spaces
-mixed-indentation:10::Found indentation with tabs instead of spaces