[pypy-svn] r74024 - pypy/trunk/pypy/module/termios/test

fijal at codespeak.net fijal at codespeak.net
Fri Apr 23 16:59:56 CEST 2010


Author: fijal
Date: Fri Apr 23 16:59:55 2010
New Revision: 74024

Modified:
   pypy/trunk/pypy/module/termios/test/test_termios.py
Log:
fix the test


Modified: pypy/trunk/pypy/module/termios/test/test_termios.py
==============================================================================
--- pypy/trunk/pypy/module/termios/test/test_termios.py	(original)
+++ pypy/trunk/pypy/module/termios/test/test_termios.py	Fri Apr 23 16:59:55 2010
@@ -130,4 +130,4 @@
         
     def test_error_tcsetattr(self):
         import termios
-        raises(TypeError, termios.tcsetattr, 0, 1, (1, 2))
+        raises(ValueError, termios.tcsetattr, 0, 1, (1, 2))



More information about the Pypy-commit mailing list