Commit 3531f69b authored by Stefan Behnel's avatar Stefan Behnel

Avoid side-effects of auto-pickling in error test.

parent d43ec746
# mode: error
# cython: auto_pickle=False
ctypedef int[1] int_array
ctypedef int[2] int_array2
......@@ -30,6 +31,6 @@ d = z # not an error
_ERRORS = u"""
20:0: Assignment to slice of wrong length, expected 2, got 1
21:0: Assignment to slice of wrong length, expected 1, got 2
21:0: Assignment to slice of wrong length, expected 2, got 1
22:0: Assignment to slice of wrong length, expected 1, got 2
"""
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment