Simplify test with fewer boxes

This commit is contained in:
Timothy Warren 2019-04-17 12:05:16 -04:00
parent dc28318a3f
commit b4a21d189f
1 changed files with 1 additions and 8 deletions

View File

@ -53,14 +53,7 @@ fn select_where_in() {
qb.from("test").where_in(
"foo",
vec![
Box::new(0),
Box::new(1),
Box::new(2),
Box::new(3),
Box::new(4),
Box::new(5),
],
vec![0, 1, 2, 3, 4, 5],
);
let sql = qb.get_compiled_select();