We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 02768e0 + 2324850 commit 3abfb00Copy full SHA for 3abfb00
1 file changed
tests/tests.rs
@@ -206,7 +206,10 @@ async fn test_pool_conn_for_each() {
206
)
207
};
208
// attach to the dummy db via conn_for_each
209
- pool.conn_for_each(attach_fn).await;
+ let results = pool.conn_for_each(attach_fn).await;
210
+ for result in results {
211
+ result.unwrap();
212
+ }
213
214
// check that the dummy db is attached
215
fn check_fn(conn: &rusqlite::Connection) -> Result<Vec<String>, rusqlite::Error> {
0 commit comments