diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2005-02-10 13:46:14 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2005-02-10 13:46:14 (GMT) |
commit | 89dbd9a0555a04623f641c7f3c567770508cf88f (patch) | |
tree | 05d757ffc5183baf4891d7516272b63088aaa1f1 /Lib/test | |
parent | 5c44cb37d65cf9eeeaed1794373f0cd8823065da (diff) | |
download | cpython-89dbd9a0555a04623f641c7f3c567770508cf88f.zip cpython-89dbd9a0555a04623f641c7f3c567770508cf88f.tar.gz cpython-89dbd9a0555a04623f641c7f3c567770508cf88f.tar.bz2 |
Fix typo
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_popen2.py | 2 |
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: |