[pypy-svn] r8576 - pypy/dist/pypy/objspace/test

ac at codespeak.net ac at codespeak.net
Tue Jan 25 17:29:10 CET 2005


Author: ac
Date: Tue Jan 25 17:29:10 2005
New Revision: 8576

Modified:
   pypy/dist/pypy/objspace/test/test_descriptor.py
Log:
Oops! typo.

Modified: pypy/dist/pypy/objspace/test/test_descriptor.py
==============================================================================
--- pypy/dist/pypy/objspace/test/test_descriptor.py	(original)
+++ pypy/dist/pypy/objspace/test/test_descriptor.py	Tue Jan 25 17:29:10 2005
@@ -29,7 +29,7 @@
         assert x.v == 1
         X.v.__set__(x, 0)
         assert x.v == 0
-        raises(AttributeError delattr, x, 'v')
+        raises(AttributeError, delattr, x, 'v')
         raises(AttributeError, X.v.__delete__, x)
 
     def test_special_methods_returning_strings(self): 



More information about the Pypy-commit mailing list