buffer testcase fix again
authorDag Sverre Seljebotn <dagss@student.matnat.uio.no>
Fri, 15 May 2009 20:17:23 +0000 (22:17 +0200)
committerDag Sverre Seljebotn <dagss@student.matnat.uio.no>
Fri, 15 May 2009 20:17:23 +0000 (22:17 +0200)
tests/run/buffmt.pyx

index 1c194092a8b5e9fb7ee39f573eb02423966d657c..581ce59d2fe8ed4c87fab83844c6a91d8a23fc42 100644 (file)
@@ -88,10 +88,10 @@ def wrongsize():
     >>> wrongsize()
     Traceback (most recent call last):
        ...
-    ValueError: Item size of buffer (1 byte) does not match size of 'unsigned long' (8 bytes)
+    ValueError: Item size of buffer (1 byte) does not match size of 'float' (4 bytes)
 
     """    
-    cdef object[unsigned long] buf = MockBuffer("L", 1)
+    cdef object[float] buf = MockBuffer("f", 1)
 
 @testcase
 def _obj(fmt):