summaryrefslogtreecommitdiff
path: root/tests/input
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-03-07 22:11:46 +0100
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-03-07 22:59:36 +0100
commit48d366855759b612cc883409997ba161afe09095 (patch)
treecf9065317cc2ac96061c84c588cb0e8e5fb6242e /tests/input
parentbf8394082f610fa0de6dd6d1d46c9233cf3b65af (diff)
downloadpylint-git-48d366855759b612cc883409997ba161afe09095.tar.gz
Migrate nameerror_on_string_substitution to new functional tests
Diffstat (limited to 'tests/input')
-rw-r--r--tests/input/func_nameerror_on_string_substitution.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/input/func_nameerror_on_string_substitution.py b/tests/input/func_nameerror_on_string_substitution.py
deleted file mode 100644
index be7b5c82a..000000000
--- a/tests/input/func_nameerror_on_string_substitution.py
+++ /dev/null
@@ -1,8 +0,0 @@
-"""pylint doesn't see the NameError in this module"""
-
-__revision__ = None
-
-MSG = "hello %s" % MSG
-
-MSG2 = ("hello %s" %
- MSG2)