From b4a21d189f340966092828d3905e71b7521f374b Mon Sep 17 00:00:00 2001 From: Timothy Warren Date: Wed, 17 Apr 2019 12:05:16 -0400 Subject: [PATCH] Simplify test with fewer boxes --- tests/integration_test.rs | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/tests/integration_test.rs b/tests/integration_test.rs index ffaa23d..50fa445 100644 --- a/tests/integration_test.rs +++ b/tests/integration_test.rs @@ -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();