Skip to content

Commit b76bedc

Browse files
committed
test: add test case for not-equal comparison expr
1 parent 814bcf0 commit b76bedc

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

parser_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ func TestParse(t *testing.T) {
77
src string
88
expected string
99
}{
10+
{"=1<>2", "BinaryExpr(Left: LiteralExpr(Value: 1), Operator: <>, Right: LiteralExpr(Value: 2))"},
1011
{"=$A:$A", "RangeExpr(CellExpr($A):CellExpr($A))"},
1112
{"=$1:1", "RangeExpr(CellExpr($1):CellExpr(1))"},
1213
{"=A:B", "RangeExpr(CellExpr(A):CellExpr(B))"},

0 commit comments

Comments
 (0)