diff options
author | Hood Chatham <roberthoodchatham@gmail.com> | 2025-03-16 22:02:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-16 22:02:27 (GMT) |
commit | cf288e3c250f5538aa632cc46ce960681efec2ae (patch) | |
tree | 1b2a5101d2c37918c1f5e9f143ab283597cd9e32 /Lib/test/test_genericpath.py | |
parent | 23cda583480fbc90cf19666a7514419ecad45b85 (diff) | |
download | cpython-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.py | 1 |
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: |