diff options
author | Brett Cannon <brett@python.org> | 2024-03-13 20:24:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-13 20:24:28 (GMT) |
commit | 61733a2fb9dc36d2246d922146a3462a2248832d (patch) | |
tree | 29f52f4623091c581a62700d57fe24dbe006542b /Lib/test/test_importlib/test_util.py | |
parent | 5ff012a4495060fe9f53ed034c90033e7eafb780 (diff) | |
download | cpython-61733a2fb9dc36d2246d922146a3462a2248832d.zip cpython-61733a2fb9dc36d2246d922146a3462a2248832d.tar.gz cpython-61733a2fb9dc36d2246d922146a3462a2248832d.tar.bz2 |
GH-115979: update test_importlib to work under WASI SDK 21 (GH-116754)
Diffstat (limited to 'Lib/test/test_importlib/test_util.py')
-rw-r--r-- | Lib/test/test_importlib/test_util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_importlib/test_util.py b/Lib/test/test_importlib/test_util.py index fe5e7b3..a092868 100644 --- a/Lib/test/test_importlib/test_util.py +++ b/Lib/test/test_importlib/test_util.py @@ -577,7 +577,7 @@ class PEP3147Tests: with util.temporary_pycache_prefix(pycache_prefix): self.assertEqual( self.util.cache_from_source(path, optimization=''), - expect) + os.path.normpath(expect)) @unittest.skipIf(sys.implementation.cache_tag is None, 'requires sys.implementation.cache_tag to not be None') |