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_ntpath.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_ntpath.py')
-rw-r--r-- | Lib/test/test_ntpath.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_ntpath.py b/Lib/test/test_ntpath.py index da01c65..c10387b 100644 --- a/Lib/test/test_ntpath.py +++ b/Lib/test/test_ntpath.py @@ -940,7 +940,6 @@ class TestNtpath(NtpathTestCase): self.assertRaises(TypeError, ntpath.commonpath, ['C:\\Foo', b'Foo\\Baz']) self.assertRaises(TypeError, ntpath.commonpath, ['Foo', b'C:\\Foo\\Baz']) - @unittest.skipIf(is_emscripten, "Fixed in next Emscripten release after 4.0.1") def test_sameopenfile(self): with TemporaryFile() as tf1, TemporaryFile() as tf2: # Make sure the same file is really the same |