diff --git a/Lib/test/test_importlib/import_/test_path.py b/Lib/test/test_importlib/import_/test_path.py index f257f117b47..c246d6973fa 100644 --- a/Lib/test/test_importlib/import_/test_path.py +++ b/Lib/test/test_importlib/import_/test_path.py @@ -3,6 +3,7 @@ importlib = util.import_importlib('importlib') machinery = util.import_importlib('importlib.machinery') +import errno import os import sys import tempfile @@ -167,8 +168,7 @@ def test_deleted_cwd(self): with tempfile.TemporaryDirectory() as path: os.chdir(path) except OSError as exc: - if exc.errno == 22: - # issue #22834 + if exc.errno == errno.EINVAL: self.skipTest("platform does not allow the deletion of the cwd") raise with util.import_state(path=['']):