Browse Source

Fixed a test for issue #21619 on Windows.

On Windows an OSError with errno=EINVAL is raised.
pull/224/head
Serhiy Storchaka 12 years ago
parent
commit
cf265fd02a
  1. 2
      Lib/test/test_subprocess.py

2
Lib/test/test_subprocess.py

@ -2531,7 +2531,7 @@ class ContextManagerTests(BaseTestCase):
proc.stdout.read() # Make sure subprocess has closed its input
proc.stdin.write(b"buffered data")
self.assertIsNone(proc.returncode)
self.assertRaises(BrokenPipeError, proc.__exit__, None, None, None)
self.assertRaises(OSError, proc.__exit__, None, None, None)
self.assertEqual(0, proc.returncode)
self.assertTrue(proc.stdin.closed)
self.assertTrue(proc.stdout.closed)

Loading…
Cancel
Save