Author: Ronan Lamy <[email protected]>
Branch: issue2018
Changeset: r76771:c06ba587fc61
Date: 2015-04-10 19:46 +0100
http://bitbucket.org/pypy/pypy/changeset/c06ba587fc61/

Log:    unxfail passing tests

diff --git a/rpython/rtyper/lltypesystem/test/test_lltype.py 
b/rpython/rtyper/lltypesystem/test/test_lltype.py
--- a/rpython/rtyper/lltypesystem/test/test_lltype.py
+++ b/rpython/rtyper/lltypesystem/test/test_lltype.py
@@ -547,10 +547,10 @@
 
 @py.test.mark.parametrize('x', [
     1, sys.maxint, 1.5, 'a', 'abc', u'abc', None, [],
-    py.test.mark.xfail(lambda: None),
+    lambda: None,
     {1.23: 'abc'},
     (1, 'x', [2, 3.],),
-    py.test.mark.xfail(Frozen()),])
+    Frozen(),])
 def test_typeOf_const(x):
     a = RPythonAnnotator()
     bk = a.bookkeeper
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to