Skip to content

Commit 9c4c51d

Browse files
committed
chore: add unused import suppressions in test files
- Included additional imports for Executor and Row in pool.rs and types.rs respectively. - Suppressed unused import warnings to enhance code clarity.
1 parent 3a1ac1f commit 9c4c51d

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

tests/any/pool.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#[allow(unused_imports)]
22
use sqlx_oldapi::any::{AnyConnectOptions, AnyPoolOptions};
33
#[allow(unused_imports)]
4+
use sqlx_oldapi::Executor;
5+
#[allow(unused_imports)]
46
use std::sync::atomic::AtomicI32;
57
use std::sync::{
68
atomic::{AtomicUsize, Ordering},

tests/sqlite/types.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ extern crate time_ as time;
44
#[allow(unused_imports)]
55
use sqlx_oldapi::sqlite::{Sqlite, SqliteRow};
66
#[allow(unused_imports)]
7+
use sqlx_oldapi::Row;
8+
#[allow(unused_imports)]
79
use sqlx_test::new;
810
use sqlx_test::test_type;
911

0 commit comments

Comments
 (0)