From 1247daec83017abfd5c17f898c7f25ba3330af9d Mon Sep 17 00:00:00 2001 From: Ryan Leckey Date: Tue, 14 Jul 2020 08:52:42 -0700 Subject: [PATCH] test: fix spurious ? in sqlite test --- tests/sqlite/sqlite.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/sqlite/sqlite.rs b/tests/sqlite/sqlite.rs index cfc64875..4c3fb9f3 100644 --- a/tests/sqlite/sqlite.rs +++ b/tests/sqlite/sqlite.rs @@ -127,7 +127,7 @@ async fn it_fetches_in_loop() -> anyhow::Result<()> { #[sqlx_macros::test] async fn it_executes_with_pool() -> anyhow::Result<()> { - let pool: SqlitePool = SqlitePoolOptions::new()? + let pool: SqlitePool = SqlitePoolOptions::new() .min_connections(2) .max_connections(2) .test_before_acquire(false)