summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--tests/cpydiff/core_function_unpacking.py4
1 files changed, 2 insertions, 2 deletions
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)