Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion tests/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,10 @@ async fn test_pool_conn_for_each() {
)
};
// attach to the dummy db via conn_for_each
pool.conn_for_each(attach_fn).await;
let results = pool.conn_for_each(attach_fn).await;
for result in results {
result.unwrap();
}

// check that the dummy db is attached
fn check_fn(conn: &rusqlite::Connection) -> Result<Vec<String>, rusqlite::Error> {
Expand Down