diff --git a/tests/errors/builtin_type_inheritance.pyx b/tests/errors/builtin_type_inheritance.pyx index c7c02222dc155d2b1b8275fed8b3d639040e03bc..1c6ad31e17bb8b96b3d3561ed6a6beadffb099c4 100644 --- a/tests/errors/builtin_type_inheritance.pyx +++ b/tests/errors/builtin_type_inheritance.pyx @@ -12,7 +12,7 @@ cdef class MyStr(str): # only in Py2, but can't know that during compilation pass _ERRORS = """ -5:5: inheritance from PyVarObject types like 'tuple' is not currently supported -8:5: inheritance from PyVarObject types like 'bytes' is not currently supported -11:5: inheritance from PyVarObject types like 'str' is not currently supported +5:19: inheritance from PyVarObject types like 'tuple' is not currently supported +8:19: inheritance from PyVarObject types like 'bytes' is not currently supported +11:17: inheritance from PyVarObject types like 'str' is not currently supported """