summaryrefslogtreecommitdiff
path: root/tests/test_cmdline.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2014-09-21 09:25:23 -0400
committerNed Batchelder <ned@nedbatchelder.com>2014-09-21 09:25:23 -0400
commitdd83d87cecb28ef014be663829f9d5849086ab85 (patch)
tree5e6bc18463f828bd1fc7ff239331718e50ee48ca /tests/test_cmdline.py
parenta9a3b09140efa349e74f91f7bc2bfb70b5e2694a (diff)
downloadpython-coveragepy-dd83d87cecb28ef014be663829f9d5849086ab85.tar.gz
Pylint upgrade and cleanup.
Diffstat (limited to 'tests/test_cmdline.py')
-rw-r--r--tests/test_cmdline.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_cmdline.py b/tests/test_cmdline.py
index 038e921..08f7937 100644
--- a/tests/test_cmdline.py
+++ b/tests/test_cmdline.py
@@ -72,7 +72,7 @@ class CmdLineTest(CoverageTest):
code = re.sub(r"(?m)^\.", "m2.", code)
m2 = self.model_object()
code_obj = compile(code, "<code>", "exec")
- eval(code_obj, globals(), { 'm2': m2 })
+ eval(code_obj, globals(), { 'm2': m2 }) # pylint: disable=eval-used
# Many of our functions take a lot of arguments, and cmdline.py
# calls them with many. But most of them are just the defaults, which