summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_genericpath.py
diff options
context:
space:
mode:
authorHood Chatham <roberthoodchatham@gmail.com>2025-03-16 22:02:27 (GMT)
committerGitHub <noreply@github.com>2025-03-16 22:02:27 (GMT)
commitcf288e3c250f5538aa632cc46ce960681efec2ae (patch)
tree1b2a5101d2c37918c1f5e9f143ab283597cd9e32 /Lib/test/test_genericpath.py
parent23cda583480fbc90cf19666a7514419ecad45b85 (diff)
downloadcpython-cf288e3c250f5538aa632cc46ce960681efec2ae.zip
cpython-cf288e3c250f5538aa632cc46ce960681efec2ae.tar.gz
cpython-cf288e3c250f5538aa632cc46ce960681efec2ae.tar.bz2
gh-127146: Update test skips for Emscripten 4.0.2 (#129474)
Updates test skips to reflect capabilities of Emscripten 4.0.2.
Diffstat (limited to 'Lib/test/test_genericpath.py')
-rw-r--r--Lib/test/test_genericpath.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_genericpath.py b/Lib/test/test_genericpath.py
index 391158b..6c3abe6 100644
--- a/Lib/test/test_genericpath.py
+++ b/Lib/test/test_genericpath.py
@@ -161,7 +161,6 @@ class GenericTest:
self.assertIs(self.pathmodule.lexists(path=filename), True)
@unittest.skipUnless(hasattr(os, "pipe"), "requires os.pipe()")
- @unittest.skipIf(is_emscripten, "Fixed in next Emscripten release after 4.0.1")
def test_exists_fd(self):
r, w = os.pipe()
try: