[pypy-svn] r14820 - pypy/dist/pypy/module/posix/test

ac at codespeak.net ac at codespeak.net
Wed Jul 20 16:58:49 CEST 2005


Author: ac
Date: Wed Jul 20 16:58:49 2005
New Revision: 14820

Modified:
   pypy/dist/pypy/module/posix/test/test_posix.py
Log:
Fix typo.

Modified: pypy/dist/pypy/module/posix/test/test_posix.py
==============================================================================
--- pypy/dist/pypy/module/posix/test/test_posix.py	(original)
+++ pypy/dist/pypy/module/posix/test/test_posix.py	Wed Jul 20 16:58:49 2005
@@ -91,7 +91,7 @@
     text = 'This is a test'
     os.write(fi,text)
     res = interpret(f,[fi])
-    raises( OSError(), os.fstat(fi))
+    raises(OSError, os.fstat, fi)
 
 def test_ftruncate():
     def f(fi,len):



More information about the Pypy-commit mailing list