summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_popen2.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2005-02-10 13:24:50 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2005-02-10 13:24:50 (GMT)
commitbfd7d6a0eac396d80efe43fa4f03e056ac57f58d (patch)
tree9e304e9ed18fb854eb03d0cf6ac571ddf5d9cfa3 /Lib/test/test_popen2.py
parentd38ddf4ca23824f375e627bda82ffa995344c6e5 (diff)
downloadcpython-bfd7d6a0eac396d80efe43fa4f03e056ac57f58d.zip
cpython-bfd7d6a0eac396d80efe43fa4f03e056ac57f58d.tar.gz
cpython-bfd7d6a0eac396d80efe43fa4f03e056ac57f58d.tar.bz2
Fix typo
Diffstat (limited to 'Lib/test/test_popen2.py')
-rw-r--r--Lib/test/test_popen2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_popen2.py b/Lib/test/test_popen2.py
index 2a15a20..18142ec 100644
--- a/Lib/test/test_popen2.py
+++ b/Lib/test/test_popen2.py
@@ -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: