From: Stefan Behnel Date: Thu, 9 Apr 2009 10:54:09 +0000 (+0200) Subject: fix error test X-Git-Tag: 0.12.alpha0~326 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d0fa1c815c1c447641d54672cdec4021357a79cb;p=cython.git fix error test --- diff --git a/tests/errors/se_multass.pyx b/tests/errors/se_multass.pyx index 5e192040..14bef3b3 100644 --- a/tests/errors/se_multass.pyx +++ b/tests/errors/se_multass.pyx @@ -2,5 +2,5 @@ def f(obj1a, obj2a, obj3a, obj1b, obj2b, obj3b, obj4b): obj1a, (obj2a, obj3a) = obj1b, (obj2b, obj3b, obj4b) _ERRORS = u""" -2:9: Unpacking sequence of wrong size (expected 2, got 3) +2:9: too many values to unpack (expected 2, got 3) """