[pypy-svn] r57725 - pypy/branch/oo-jit/pypy/rpython/ootypesystem/test

antocuni at codespeak.net antocuni at codespeak.net
Mon Sep 1 15:21:20 CEST 2008


Author: antocuni
Date: Mon Sep  1 15:21:19 2008
New Revision: 57725

Modified:
   pypy/branch/oo-jit/pypy/rpython/ootypesystem/test/test_ootype.py
Log:
this test is already present in test_oorecord



Modified: pypy/branch/oo-jit/pypy/rpython/ootypesystem/test/test_ootype.py
==============================================================================
--- pypy/branch/oo-jit/pypy/rpython/ootypesystem/test/test_ootype.py	(original)
+++ pypy/branch/oo-jit/pypy/rpython/ootypesystem/test/test_ootype.py	Mon Sep  1 15:21:19 2008
@@ -40,13 +40,6 @@
     assert typeOf(i) == I
     assert typeOf(c) == Class
 
-def test_record_equivalence():
-    R1 = Record({"a": Signed})
-    R2 = Record({"a": Signed})
-    assert R1 == R2
-    assert hash(R1) == hash(R2)
-    assert R1._class is R2._class
-
 def test_runtime_record_instantiation():
     R = Record({"a": Signed})
     c = runtimeClass(R)



More information about the Pypy-commit mailing list