[pypy-svn] r28976 - pypy/dist/pypy/rpython/ootypesystem/test

fijal at codespeak.net fijal at codespeak.net
Tue Jun 20 11:39:11 CEST 2006


Author: fijal
Date: Tue Jun 20 11:39:10 2006
New Revision: 28976

Modified:
   pypy/dist/pypy/rpython/ootypesystem/test/test_bltann.py
Log:
Fixed to new behaviour of defining types.


Modified: pypy/dist/pypy/rpython/ootypesystem/test/test_bltann.py
==============================================================================
--- pypy/dist/pypy/rpython/ootypesystem/test/test_bltann.py	(original)
+++ pypy/dist/pypy/rpython/ootypesystem/test/test_bltann.py	Tue Jun 20 11:39:10 2006
@@ -26,7 +26,7 @@
 
 class A(BasicExternal):
     _fields = {
-        'b' : int,
+        'b' : 3,
     }
 
 def test_bltn_attrs():
@@ -53,11 +53,11 @@
 
 class B(BasicExternal):
     _fields = {
-        'a' : int,
+        'a' : 32,
     }
     
     _methods = {
-        'm' : ([int],int),
+        'm' : ([1],2),
     }
 
 def test_bltn_method():



More information about the Pypy-commit mailing list