summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_unicode_file_functions.py
diff options
context:
space:
mode:
authorHood Chatham <roberthoodchatham@gmail.com>2024-12-17 07:48:23 (GMT)
committerGitHub <noreply@github.com>2024-12-17 07:48:23 (GMT)
commit1183e4ce2f7c07aeeff7c757ec749ef5af9d4415 (patch)
tree23780af57549fd119475060bb2f800b021eea86e /Lib/test/test_unicode_file_functions.py
parentcfeaa992ba9bad9be2687afcafd85156703d74e8 (diff)
downloadcpython-1183e4ce2f7c07aeeff7c757ec749ef5af9d4415.zip
cpython-1183e4ce2f7c07aeeff7c757ec749ef5af9d4415.tar.gz
cpython-1183e4ce2f7c07aeeff7c757ec749ef5af9d4415.tar.bz2
gh-127146: Emscripten clean up test suite (#127984)
Removed test skips that are no longer required as a result of Emscripten updates.
Diffstat (limited to 'Lib/test/test_unicode_file_functions.py')
-rw-r--r--Lib/test/test_unicode_file_functions.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_unicode_file_functions.py b/Lib/test/test_unicode_file_functions.py
index 25c16e3..4a067d7 100644
--- a/Lib/test/test_unicode_file_functions.py
+++ b/Lib/test/test_unicode_file_functions.py
@@ -125,8 +125,8 @@ class UnicodeFileTests(unittest.TestCase):
# open(), os.stat(), etc. don't raise any exception.
@unittest.skipIf(is_apple, 'irrelevant test on Apple platforms')
@unittest.skipIf(
- support.is_emscripten or support.is_wasi,
- "test fails on Emscripten/WASI when host platform is macOS."
+ support.is_wasi,
+ "test fails on WASI when host platform is macOS."
)
def test_normalize(self):
files = set(self.files)