[pypy-svn] r23733 - pypy/dist/pypy/rpython/test

nik at codespeak.net nik at codespeak.net
Tue Feb 28 02:39:50 CET 2006


Author: nik
Date: Tue Feb 28 02:39:47 2006
New Revision: 23733

Modified:
   pypy/dist/pypy/rpython/test/test_ootype_llinterp.py
Log:
fix even more tests broken by ootype changes ... thanks arigo.


Modified: pypy/dist/pypy/rpython/test/test_ootype_llinterp.py
==============================================================================
--- pypy/dist/pypy/rpython/test/test_ootype_llinterp.py	(original)
+++ pypy/dist/pypy/rpython/test/test_ootype_llinterp.py	Tue Feb 28 02:39:47 2006
@@ -2,7 +2,7 @@
 from pypy.rpython.test.test_llinterp import interpret
 
 def test_simple_field():
-    C = Instance("test", None, {'a': (Signed, 3)})
+    C = Instance("test", ROOT, {'a': (Signed, 3)})
     
     def f():
         c = new(C)
@@ -13,7 +13,7 @@
     assert result == 5
 
 def test_simple_method():
-    C = Instance("test", None, {'a': (Signed, 3)})
+    C = Instance("test", ROOT, {'a': (Signed, 3)})
     M = Meth([], Signed)
     def m_(self):
        return self.a



More information about the Pypy-commit mailing list