[Python-checkins] python/dist/src/Lib/test test_popen2.py,1.8,1.9

akuchling at users.sourceforge.net akuchling at users.sourceforge.net
Thu Feb 10 14:24:52 CET 2005


Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23112/Lib/test

Modified Files:
	test_popen2.py 
Log Message:
Fix typo

Index: test_popen2.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_popen2.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- test_popen2.py	12 Feb 2004 17:35:11 -0000	1.8
+++ test_popen2.py	10 Feb 2005 13:24:50 -0000	1.9
@@ -62,7 +62,7 @@
         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:



More information about the Python-checkins mailing list