X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/658eb7161d8d0c23bafe4881e70518c33a74a4c1..33baccd88ef45ebbb35e4c2ad7b87c7b91432f55:/tests/expression.py

diff --git a/tests/expression.py b/tests/expression.py
index f35a6fd..ea927a5 100644
--- a/tests/expression.py
+++ b/tests/expression.py
@@ -152,6 +152,7 @@ b = 1,
 c = 1
 d = (1,) + a + (2,)
 e = (1,).count(1)
+f = 1, *range(10)
 what_is_up_with_those_new_coord_names = (coord_names + set(vars_to_create)) + set(vars_to_remove)
 what_is_up_with_those_new_coord_names = (coord_names | set(vars_to_create)) - set(vars_to_remove)
 result = session.query(models.Customer.id).filter(models.Customer.account_id == account_id, models.Customer.email == email_address).order_by(models.Customer.id.asc(),).all()
@@ -426,6 +427,7 @@ b = (1,)
 c = 1
 d = (1,) + a + (2,)
 e = (1,).count(1)
+f = 1, *range(10)
 what_is_up_with_those_new_coord_names = (coord_names + set(vars_to_create)) + set(
     vars_to_remove
 )