diff options
author | Li Jin <dragon-fly@qq.com> | 2023-07-13 09:09:47 +0800 |
---|---|---|
committer | Li Jin <dragon-fly@qq.com> | 2023-07-13 09:09:47 +0800 |
commit | 1d2423bff4ecc4396d65c387982d6667b33bd796 (patch) | |
tree | 8826b1e95cc6feb9c3a2cd62e9c2848d64e9fd03 /spec/inputs/in_expression.yue | |
parent | 7775f4c5b97dcc0d7e71a2cd8fb132f2b5bc1bd6 (diff) | |
download | yuescript-0.17.6.tar.gz yuescript-0.17.6.tar.bz2 yuescript-0.17.6.zip |
fix a missing case for in expression.v0.17.6
Diffstat (limited to '')
-rw-r--r-- | spec/inputs/in_expression.yue | 2 |
1 files changed, 1 insertions, 1 deletions
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 | |||
36 | do | 36 | do |
37 | item = get! | 37 | item = get! |
38 | list = {1, 2, 3} | 38 | list = {1, 2, 3} |
39 | exist = item in list | 39 | not_exist = item not in list |
40 | check item in list | 40 | check item in list |
41 | check item in {1, 2, 3} | 41 | check item in {1, 2, 3} |
42 | check item in {[1]: 1, [2]: 2, [3]: 3} | 42 | check item in {[1]: 1, [2]: 2, [3]: 3} |