From 1d2423bff4ecc4396d65c387982d6667b33bd796 Mon Sep 17 00:00:00 2001 From: Li Jin Date: Thu, 13 Jul 2023 09:09:47 +0800 Subject: fix a missing case for in expression. --- spec/inputs/in_expression.yue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'spec/inputs') diff --git a/spec/inputs/in_expression.yue b/spec/inputs/in_expression.yue index 66a8215..4080016 100644 --- a/spec/inputs/in_expression.yue +++ b/spec/inputs/in_expression.yue @@ -36,7 +36,7 @@ do do item = get! list = {1, 2, 3} - exist = item in list + not_exist = item not in list check item in list check item in {1, 2, 3} check item in {[1]: 1, [2]: 2, [3]: 3} -- cgit v1.2.3-55-g6feb