summaryrefslogtreecommitdiff
path: root/tests/functional/r/recursion_error_crash.py
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-03-07 20:21:07 +0100
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-03-07 20:51:46 +0100
commite86d859b792769b422f96fd625efebd8f60118e4 (patch)
treeb0429e767063354be44854a840856d5aeabc1fbc /tests/functional/r/recursion_error_crash.py
parent9d312eb542d8634e906508f5bbecb9a10a4da4ee (diff)
downloadpylint-git-e86d859b792769b422f96fd625efebd8f60118e4.tar.gz
Create subdirectory for crowded functional tests
Diffstat (limited to 'tests/functional/r/recursion_error_crash.py')
-rw-r--r--tests/functional/r/recursion_error_crash.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/functional/r/recursion_error_crash.py b/tests/functional/r/recursion_error_crash.py
deleted file mode 100644
index 208bc2e7a..000000000
--- a/tests/functional/r/recursion_error_crash.py
+++ /dev/null
@@ -1,9 +0,0 @@
-"""Test that a recursion error does not happen
-
-https://github.com/PyCQA/pylint/issues/2463
-"""
-import os
-
-ABC = os.path.realpath('abc')
-DEF = os.path.realpath(ABC + 'def')
-GHI = os.path.join(DEF, 'ghi')