Author: David Schneider <[email protected]>
Branch: disable_merge_different_int_types
Changeset: r49902:841843401a55
Date: 2011-11-24 15:26 +0100
http://bitbucket.org/pypy/pypy/changeset/841843401a55/

Log:    remove a testcase that is now valid

diff --git a/pypy/rlib/test/test_rarithmetic.py 
b/pypy/rlib/test/test_rarithmetic.py
--- a/pypy/rlib/test/test_rarithmetic.py
+++ b/pypy/rlib/test/test_rarithmetic.py
@@ -343,7 +343,7 @@
 def test_compute_restype_incompatible():
     from pypy.rpython.lltypesystem.rffi import r_int_real, r_short, r_ushort
     testcases = [(r_uint, r_longlong), (r_int_real, r_uint),
-                (r_short, r_ushort), (r_ushort, r_uint)]
+                (r_short, r_ushort)]
     for t1, t2 in testcases:
         py.test.raises(AssertionError, compute_restype, t1, t2)
         py.test.raises(AssertionError, compute_restype, t2, t1)
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to