summaryrefslogtreecommitdiff
path: root/tests/input
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-03-07 21:38:33 +0100
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-03-07 22:59:36 +0100
commite1a7f0afa8f8a55587b99eb6a3fde7d0510e6b49 (patch)
tree94ce76bd53e757922eaf60e574158b78120bcf0a /tests/input
parenta8fea87b9bc8c2a3e4a4ba5f13b94c1857726c67 (diff)
downloadpylint-git-e1a7f0afa8f8a55587b99eb6a3fde7d0510e6b49.tar.gz
Migrate func_logging_not_lazy_with_logger to new functional tests
Diffstat (limited to 'tests/input')
-rw-r--r--tests/input/func_logging_not_lazy_with_logger.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/input/func_logging_not_lazy_with_logger.py b/tests/input/func_logging_not_lazy_with_logger.py
deleted file mode 100644
index 973a5c795..000000000
--- a/tests/input/func_logging_not_lazy_with_logger.py
+++ /dev/null
@@ -1,13 +0,0 @@
-"""Logging warnings using a logger class."""
-from __future__ import absolute_import
-import logging
-
-__revision__ = ''
-
-LOG = logging.getLogger("domain")
-LOG.debug("%s" % "junk")
-LOG.log(logging.DEBUG, "%s" % "junk")
-LOG2 = LOG.debug
-LOG2("%s" % "junk")
-
-logging.getLogger("domain").debug("%s" % "junk")