Skip to content

Commit

Permalink
Merge pull request #23 from bytedance/fix/fix_list_operator
Browse files Browse the repository at this point in the history
fix list not contains operator
  • Loading branch information
AoranAllen authored Aug 2, 2024
2 parents 16962c5 + b4f1a0a commit 264e0ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/operator/list_operator.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ func ListContainsOperate(left, right interface{}) (bool, error) {
}

func ListNotContainsOperate(left, right interface{}) (bool, error) {
res, err := ListContainsOperate(right, left)
res, err := ListContainsOperate(left, right)
if err != nil {
return false, err
}
Expand Down

0 comments on commit 264e0ab

Please sign in to comment.