[pypy-commit] cffi default: Fix test

arigo noreply at buildbot.pypy.org
Tue Jan 14 09:08:57 CET 2014


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r1454:1974af91fdb2
Date: 2014-01-14 09:08 +0100
http://bitbucket.org/cffi/cffi/changeset/1974af91fdb2/

Log:	Fix test

diff --git a/testing/test_parsing.py b/testing/test_parsing.py
--- a/testing/test_parsing.py
+++ b/testing/test_parsing.py
@@ -32,7 +32,8 @@
     def new_struct_type(self, name):
         return FakeStruct(name)
 
-    def complete_struct_or_union(self, s, fields, tp=None):
+    def complete_struct_or_union(self, s, fields, tp=None,
+                                 totalsize=-1, totalalignment=-1, sflags=0):
         assert isinstance(s, FakeStruct)
         s.fields = fields
     


More information about the pypy-commit mailing list