From bfd7d6a0eac396d80efe43fa4f03e056ac57f58d Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Thu, 10 Feb 2005 13:24:50 +0000 Subject: Fix typo --- Lib/test/test_popen2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/test') diff --git a/Lib/test/test_popen2.py b/Lib/test/test_popen2.py index 2a15a206e6..18142ecc13 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: -- cgit v1.2.1