diff options
author | Zackery Spytz <zspytz@gmail.com> | 2018-09-06 18:43:30 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2018-09-06 18:43:30 (GMT) |
commit | b03c2c51909e3b5b5966d86a2829b5ddf2d496aa (patch) | |
tree | 73cefb81f57eba929c6710e3744bb7c36b45ea0d /Lib/test/test_tabnanny.py | |
parent | 3e2b29dccc3ca9fbc418bfa312ad655782e250f2 (diff) | |
download | cpython-b03c2c51909e3b5b5966d86a2829b5ddf2d496aa.zip cpython-b03c2c51909e3b5b5966d86a2829b5ddf2d496aa.tar.gz cpython-b03c2c51909e3b5b5966d86a2829b5ddf2d496aa.tar.bz2 |
closes bpo-34594: Don't hardcode errno values in the tests. (GH-9076)
Diffstat (limited to 'Lib/test/test_tabnanny.py')
-rw-r--r-- | Lib/test/test_tabnanny.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/test/test_tabnanny.py b/Lib/test/test_tabnanny.py index ec88736..845096e 100644 --- a/Lib/test/test_tabnanny.py +++ b/Lib/test/test_tabnanny.py @@ -5,6 +5,7 @@ Glossary: """ from unittest import TestCase, mock from unittest import mock +import errno import tabnanny import tokenize import tempfile @@ -232,7 +233,8 @@ class TestCheck(TestCase): def test_when_no_file(self): """A python file which does not exist actually in system.""" path = 'no_file.py' - err = f"{path!r}: I/O Error: [Errno 2] No such file or directory: {path!r}\n" + err = f"{path!r}: I/O Error: [Errno {errno.ENOENT}] " \ + f"No such file or directory: {path!r}\n" self.verify_tabnanny_check(path, err=err) def test_errored_directory(self): |