test: fix spurious ? in sqlite test

This commit is contained in:
Ryan Leckey 2020-07-14 08:52:42 -07:00
parent 63f37a78c3
commit 1247daec83

View File

@ -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)