Minor testcase fixes
authorDag Sverre Seljebotn <dagss@student.matnat.uio.no>
Wed, 6 May 2009 19:03:59 +0000 (21:03 +0200)
committerDag Sverre Seljebotn <dagss@student.matnat.uio.no>
Wed, 6 May 2009 19:03:59 +0000 (21:03 +0200)
tests/run/cdef_setitem_T284.pyx
tests/run/numpy_test.pyx

index a93fbac142c0fedd462e75d8543a423ec414ebf5..81edbba46dde1e3f6503a2a9fc0d276d7cc54c46 100644 (file)
@@ -6,7 +6,7 @@ __doc__ = u'''
 >>> test_list(range(11), "invalid index", None)
 Traceback (most recent call last):
 ...
-TypeError: list indices must be integers, not str
+TypeError: list indices must be integers
 '''
 def no_cdef():
     lst = range(11)
index 17a1f28c70352b04fd237b970c7d39e70b9f3b24..f9bb1fe16789fd3070f3353f29066aeba781a56f 100644 (file)
@@ -190,7 +190,7 @@ try:
     >>> test_bad_cast()
     Traceback (most recent call last):
         ...
-    ValueError: Item size of buffer (1 byte) does not match size of 'long' (8 bytes)
+    ValueError: Item size of buffer (1 byte) does not match size of 'int' (4 bytes)
     
 """
 except:
@@ -350,7 +350,7 @@ def test_good_cast():
 
 def test_bad_cast():
     # This should raise an exception
-    cdef np.ndarray[long, cast=True] arr = np.array([1], dtype=b'b')
+    cdef np.ndarray[int, cast=True] arr = np.array([1], dtype=b'b')
 
 cdef packed struct PackedStruct:
     char a