Adjust expected test error messages to match p_c_python_binding parsing.
authorW. Trevor King <wking@drexel.edu>
Sun, 20 Feb 2011 02:02:37 +0000 (21:02 -0500)
committerW. Trevor King <wking@drexel.edu>
Sun, 20 Feb 2011 02:02:37 +0000 (21:02 -0500)
tests/errors/e_func_in_pxd.pyx
tests/errors/e_undefexttype.pyx

index e8a158c393ce726a7d25feea20f9ffba168432a2..7453c6e0137b9f35df01e75ab74336744efa3f33 100644 (file)
@@ -2,6 +2,6 @@ cimport e_func_in_pxd_support
 
 _ERRORS = u"""
 1:5: function definition in pxd file must be declared 'cdef inline'
-4:5: inline function definition in pxd file cannot be 'public'
+4:12: inline function definition in pxd file cannot be 'public'
 7:5: inline function definition in pxd file cannot be 'api'
 """
index 23b7903a999dbef9b2e18c4afd6de9713be513bd..232f4d739bf694950504174ae8f265a632e96ea6 100644 (file)
@@ -2,5 +2,5 @@ cdef class Spam
 cdef extern class external.Eggs
 _ERRORS = u"""
 1:5: C class 'Spam' is declared but not defined
-2:5: C class 'Eggs' is declared but not defined
+2:12: C class 'Eggs' is declared but not defined
 """