Commit d0fa1c81 authored by Stefan Behnel's avatar Stefan Behnel

fix error test

parent 6139c1a0
...@@ -2,5 +2,5 @@ def f(obj1a, obj2a, obj3a, obj1b, obj2b, obj3b, obj4b): ...@@ -2,5 +2,5 @@ def f(obj1a, obj2a, obj3a, obj1b, obj2b, obj3b, obj4b):
obj1a, (obj2a, obj3a) = obj1b, (obj2b, obj3b, obj4b) obj1a, (obj2a, obj3a) = obj1b, (obj2b, obj3b, obj4b)
_ERRORS = u""" _ERRORS = u"""
2:9: Unpacking sequence of wrong size (expected 2, got 3) 2:9: too many values to unpack (expected 2, got 3)
""" """
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