Skip to content

Commit

Permalink
minor test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
demonsh committed May 26, 2022
1 parent 9000b8c commit 810ab1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions query_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ func TestScalarCompare(t *testing.T) {
name: "testing unknown operator",
x: big.NewInt(0),
y: big.NewInt(1),
operator: 6, // unknown operator.
operator: 5, // unknown operator.
expected: false,
withErr: true,
},
Expand Down Expand Up @@ -127,7 +127,7 @@ func TestVectorCompare(t *testing.T) {
name: "testing unknown operator",
x: big.NewInt(0),
y: []*big.Int{big.NewInt(1), big.NewInt(10), big.NewInt(100)},
operator: 7, // unknown operator.
operator: 6, // unknown operator.
expected: false,
withErr: true,
},
Expand Down

0 comments on commit 810ab1a

Please sign in to comment.