summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2005-02-10 13:46:14 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2005-02-10 13:46:14 (GMT)
commit89dbd9a0555a04623f641c7f3c567770508cf88f (patch)
tree05d757ffc5183baf4891d7516272b63088aaa1f1 /Lib/test
parent5c44cb37d65cf9eeeaed1794373f0cd8823065da (diff)
downloadcpython-89dbd9a0555a04623f641c7f3c567770508cf88f.zip
cpython-89dbd9a0555a04623f641c7f3c567770508cf88f.tar.gz
cpython-89dbd9a0555a04623f641c7f3c567770508cf88f.tar.bz2
Fix typo
Diffstat (limited to 'Lib/test')
-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: