diff --git a/tests/cpydiff/core_function_unpacking.py b/tests/cpydiff/core_function_unpacking.py index f0cc24055a..01d25ee4d2 100644 --- a/tests/cpydiff/core_function_unpacking.py +++ b/tests/cpydiff/core_function_unpacking.py @@ -1,7 +1,7 @@ """ categories: Core,Functions -description: Unpacking function arguments in non-last position gives incorrect result +description: Unpacking function arguments in non-last position isn't detected as an error cause: Unknown -workaround: Unknown +workaround: The syntax below is invalid, never use it in applications. """ print(*(1, 2), 3)