Author: Armin Rigo <ar...@tunes.org>
Branch: 
Changeset: r75850:3e2087f324da
Date: 2015-02-13 12:13 +0100
http://bitbucket.org/pypy/pypy/changeset/3e2087f324da/

Log:    fix test

diff --git a/pypy/module/test_lib_pypy/ctypes_tests/test_structures.py 
b/pypy/module/test_lib_pypy/ctypes_tests/test_structures.py
--- a/pypy/module/test_lib_pypy/ctypes_tests/test_structures.py
+++ b/pypy/module/test_lib_pypy/ctypes_tests/test_structures.py
@@ -23,7 +23,7 @@
         assert Y._fields_ == [("b", c_int)]
         assert Z._fields_ == [("a", c_int)]
 
-        assert Y._names == ['a', 'b']
+        assert Y._pyctypes__names == ['a', 'b']
 
     def test_subclass_delayed(self):
         class X(Structure):
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to