]> granicus.if.org Git - python/commitdiff
bpo-31904: Fix test_tabnanny on VxWorks (GH-12646)
authorLihua Zhao <44661095+LihuaZhao@users.noreply.github.com>
Wed, 17 Apr 2019 09:46:50 +0000 (17:46 +0800)
committerVictor Stinner <vstinner@redhat.com>
Wed, 17 Apr 2019 09:46:50 +0000 (11:46 +0200)
 Fix test_tabnanny on VxWorks: adjust ENOENT error message,
use os.strerror().

Lib/test/test_tabnanny.py
Misc/NEWS.d/next/Tests/2019-04-01-16-06-36.bpo-31904.peaceF.rst [new file with mode: 0644]

index 845096e63c269ce47ce061e289164e541e483af0..81549d14ae2b790e7935e9e102cf42319f8dda0c 100644 (file)
@@ -6,6 +6,8 @@ Glossary:
 from unittest import TestCase, mock
 from unittest import mock
 import errno
+import os
+import sys
 import tabnanny
 import tokenize
 import tempfile
@@ -233,8 +235,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 {errno.ENOENT}] " \
-              f"No such file or directory: {path!r}\n"
+        err = (f"{path!r}: I/O Error: [Errno {errno.ENOENT}] "
+              f"{os.strerror(errno.ENOENT)}: {path!r}\n")
         self.verify_tabnanny_check(path, err=err)
 
     def test_errored_directory(self):
diff --git a/Misc/NEWS.d/next/Tests/2019-04-01-16-06-36.bpo-31904.peaceF.rst b/Misc/NEWS.d/next/Tests/2019-04-01-16-06-36.bpo-31904.peaceF.rst
new file mode 100644 (file)
index 0000000..6297717
--- /dev/null
@@ -0,0 +1 @@
+Fix test_tabnanny on VxWorks: adjust ENOENT error message.