summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2019-07-30 11:13:06 -0400
committerNed Batchelder <ned@nedbatchelder.com>2019-07-30 11:13:06 -0400
commitad620d081c8508f94846fc01be331f107cb14050 (patch)
tree402536c2ddbfdda6b73876f633150f22c816c0a3
parent6831811a12c97724d09d5affe46c7dfd444eb222 (diff)
downloadpython-coveragepy-git-ad620d081c8508f94846fc01be331f107cb14050.tar.gz
I have to remember to run pylint before checking things in.
-rw-r--r--tests/test_context.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_context.py b/tests/test_context.py
index 21d29a0c..9c8d4605 100644
--- a/tests/test_context.py
+++ b/tests/test_context.py
@@ -288,5 +288,5 @@ class QualnameTest(CoverageTest):
def test_bug_829(self):
# A class with a name like a function shouldn't confuse qualname_from_frame.
- class test_something(object):
+ class test_something(object): # pylint: disable=unused-variable
self.assertEqual(get_qualname(), None)