[pypy-commit] pypy py3k: Fix failing test in _rawffi

amauryfa noreply at buildbot.pypy.org
Mon Nov 5 22:50:32 CET 2012


Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
Branch: py3k
Changeset: r58753:ac149d6f109d
Date: 2012-10-27 09:44 +0200
http://bitbucket.org/pypy/pypy/changeset/ac149d6f109d/

Log:	Fix failing test in _rawffi

diff --git a/pypy/module/_rawffi/test/test__rawffi.py b/pypy/module/_rawffi/test/test__rawffi.py
--- a/pypy/module/_rawffi/test/test__rawffi.py
+++ b/pypy/module/_rawffi/test/test__rawffi.py
@@ -555,7 +555,6 @@
         raises(ValueError, "lib.ptr('get_char', [], 'x')")
         raises(ValueError, "_rawffi.Structure(['x1', 'xx'])")
         raises(ValueError, _rawffi.Structure, [('x1', 'xx')])
-        raises(TypeError, _rawffi.Structure, [(u'\xe9', 'l')])
         raises(ValueError, "_rawffi.Array('xx')")
 
     def test_longs_ulongs(self):


More information about the pypy-commit mailing list