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

Fix typo

parent d38ddf4c
......@@ -213,7 +213,7 @@ def _test():
raise ValueError("wrote %r read %r" % (teststr, got))
got = e.read()
if got:
raise ValueError("unexected %r on stderr" % (got,))
raise ValueError("unexpected %r on stderr" % (got,))
for inst in _active[:]:
inst.wait()
if _active:
......
......@@ -62,7 +62,7 @@ def _test():
raise ValueError("wrote %r read %r" % (teststr, got))
got = e.read()
if got:
raise ValueError("unexected %r on stderr" % (got,))
raise ValueError("unexpected %r on stderr" % (got,))
for inst in popen2._active[:]:
inst.wait()
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