Skip to content

Commit b1d36b1

Browse files
committed
Revert "Skip two more tests which are fixed by a pending Emscripten PR"
This reverts commit a8bbec5.
1 parent a8bbec5 commit b1d36b1

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

Lib/test/test_io.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3933,7 +3933,6 @@ def test_issue35928(self):
39333933
self.assertEqual(res + f.readline(), 'foo\nbar\n')
39343934

39353935
@unittest.skipUnless(hasattr(os, "pipe"), "requires os.pipe()")
3936-
@unittest.skipIf(support.is_emscripten, "Would be fixed by emscripten-core/emscripten#23058")
39373936
def test_read_non_blocking(self):
39383937
import os
39393938
r, w = os.pipe()

Lib/test/test_zipfile/test_core.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@
2222
from test.support import script_helper
2323
from test.support import (
2424
findfile, requires_zlib, requires_bz2, requires_lzma,
25-
captured_stdout, captured_stderr, requires_subprocess,
26-
is_emscripten
25+
captured_stdout, captured_stderr, requires_subprocess
2726
)
2827
from test.support.os_helper import (
2928
TESTFN, unlink, rmtree, temp_dir, temp_cwd, fd_count, FakePath
@@ -623,7 +622,6 @@ def test_write_to_readonly(self):
623622
with self.assertRaises(ValueError):
624623
zipfp.open(TESTFN, mode='w')
625624

626-
@unittest.skipIf(support.is_emscripten, "Would be fixed by emscripten-core/emscripten#23058")
627625
def test_add_file_before_1980(self):
628626
# Set atime and mtime to 1970-01-01
629627
os.utime(TESTFN, (0, 0))

0 commit comments

Comments
 (0)