Skip to content

Commit

Permalink
test: fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
kakcy committed Jan 17, 2025
1 parent fc410e7 commit a7de926
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/storage/v2/mysql/query_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ func TestConstructWhereSQLString(t *testing.T) {
NewFilter("name", "=", "feature"),
NewJSONFilter("enums", JSONContainsNumber, []interface{}{1, 3}),
},
expectedSQL: "WHERE name = ? AND JSON_CONTAINS(enums, ?)",
expectedSQL: "WHERE name = ? AND JSON_CONTAINS(enums, ?) ",
expectedArgs: []interface{}{"feature", "[1, 3]"},
},
}
Expand Down

0 comments on commit a7de926

Please sign in to comment.