Skip to content

Commit f750c0c

Browse files
committed
added back the skipIf for windows
1 parent 0873e45 commit f750c0c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Lib/test/test_builtin.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1364,6 +1364,7 @@ def test_open_default_encoding(self):
13641364
os.environ.clear()
13651365
os.environ.update(old_environ)
13661366

1367+
@unittest.skipIf(sys.platform == 'win32', 'TODO: RUSTPYTHON Windows')
13671368
@support.requires_subprocess()
13681369
def test_open_non_inheritable(self):
13691370
fileobj = open(__file__, encoding="utf-8")
@@ -1614,7 +1615,7 @@ def test_bug_27936(self):
16141615
self.assertEqual(type(round(x, None)), type(round(x)))
16151616

16161617
# TODO: RUSTPYTHON
1617-
@unittest.expectedFailure
1618+
# @unittest.expectedFailure
16181619
def test_setattr(self):
16191620
setattr(sys, 'spam', 1)
16201621
self.assertEqual(sys.spam, 1)

0 commit comments

Comments
 (0)