Skip to content

Commit 05e888e

Browse files
committed
unmark failing tests
1 parent 86e1a0b commit 05e888e

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

Lib/test/test_subprocess.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3649,8 +3649,6 @@ def test_shell_string(self):
36493649
with p:
36503650
self.assertIn(b"physalis", p.stdout.read())
36513651

3652-
# TODO: RUSTPYTHON
3653-
@unittest.expectedFailure
36543652
def test_shell_encodings(self):
36553653
# Run command through the shell (string)
36563654
for enc in ['ansi', 'oem']:
@@ -3869,28 +3867,20 @@ def with_spaces(self, *args, **kwargs):
38693867
"2 [%r, 'ab cd']" % self.fname
38703868
)
38713869

3872-
# TODO: RUSTPYTHON
3873-
@unittest.expectedFailure
38743870
def test_shell_string_with_spaces(self):
38753871
# call() function with string argument with spaces on Windows
38763872
self.with_spaces('"%s" "%s" "%s"' % (sys.executable, self.fname,
38773873
"ab cd"), shell=1)
38783874

3879-
# TODO: RUSTPYTHON
3880-
@unittest.expectedFailure
38813875
def test_shell_sequence_with_spaces(self):
38823876
# call() function with sequence argument with spaces on Windows
38833877
self.with_spaces([sys.executable, self.fname, "ab cd"], shell=1)
38843878

3885-
# TODO: RUSTPYTHON
3886-
@unittest.expectedFailure
38873879
def test_noshell_string_with_spaces(self):
38883880
# call() function with string argument with spaces on Windows
38893881
self.with_spaces('"%s" "%s" "%s"' % (sys.executable, self.fname,
38903882
"ab cd"))
38913883

3892-
# TODO: RUSTPYTHON
3893-
@unittest.expectedFailure
38943884
def test_noshell_sequence_with_spaces(self):
38953885
# call() function with sequence argument with spaces on Windows
38963886
self.with_spaces([sys.executable, self.fname, "ab cd"])

0 commit comments

Comments
 (0)