[pypy-svn] r63706 - pypy/trunk/pypy/module/sys/test

pedronis at codespeak.net pedronis at codespeak.net
Mon Apr 6 11:23:34 CEST 2009


Author: pedronis
Date: Mon Apr  6 11:23:33 2009
New Revision: 63706

Modified:
   pypy/trunk/pypy/module/sys/test/test_sysmodule.py
Log:
tweak differently



Modified: pypy/trunk/pypy/module/sys/test/test_sysmodule.py
==============================================================================
--- pypy/trunk/pypy/module/sys/test/test_sysmodule.py	(original)
+++ pypy/trunk/pypy/module/sys/test/test_sysmodule.py	Mon Apr  6 11:23:33 2009
@@ -81,7 +81,7 @@
         assert isinstance(sys.__stderr__, file)
         assert isinstance(sys.__stdin__, file)
     
-        if self.appdirect and not isinstance(sys.stdout, file):
+        if self.appdirect and not isinstance(sys.stdin, file):
             return
 
         assert isinstance(sys.stdout, file)



More information about the Pypy-commit mailing list