diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-11-23 06:43:15 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-11-23 06:43:15 -0500 |
commit | 622742746327abccd848d40583c9d7bc8bcb096c (patch) | |
tree | a1419e5f0df1bf266abca7728d0376e2fae8afcb /tests/test_process.py | |
parent | b26cf4981ebc3bdbcec03386b4ee2734f5e9a444 (diff) | |
download | python-coveragepy-git-622742746327abccd848d40583c9d7bc8bcb096c.tar.gz |
Change all pylint message codes to message names
Diffstat (limited to 'tests/test_process.py')
-rw-r--r-- | tests/test_process.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_process.py b/tests/test_process.py index ac5c6e1b..4584e7d7 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -661,7 +661,7 @@ class ProcessStartupTest(CoverageTest): data_file = .mycovdata """) self.set_environ("COVERAGE_PROCESS_START", "coverage.ini") - import main # pylint: disable=F0401,W0612 + import main # pylint: disable=import-error,unused-variable with open("out.txt") as f: self.assertEqual(f.read(), "Hello, world!\n") |