Commit bfd7d6a0 authored by Andrew M. Kuchling's avatar Andrew M. Kuchling

Fix typo

parent d38ddf4c
...@@ -213,7 +213,7 @@ def _test(): ...@@ -213,7 +213,7 @@ def _test():
raise ValueError("wrote %r read %r" % (teststr, got)) raise ValueError("wrote %r read %r" % (teststr, got))
got = e.read() got = e.read()
if got: if got:
raise ValueError("unexected %r on stderr" % (got,)) raise ValueError("unexpected %r on stderr" % (got,))
for inst in _active[:]: for inst in _active[:]:
inst.wait() inst.wait()
if _active: if _active:
......
...@@ -62,7 +62,7 @@ def _test(): ...@@ -62,7 +62,7 @@ def _test():
raise ValueError("wrote %r read %r" % (teststr, got)) raise ValueError("wrote %r read %r" % (teststr, got))
got = e.read() got = e.read()
if got: if got:
raise ValueError("unexected %r on stderr" % (got,)) raise ValueError("unexpected %r on stderr" % (got,))
for inst in popen2._active[:]: for inst in popen2._active[:]:
inst.wait() inst.wait()
if popen2._active: if popen2._active:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment