Skip to content

Commit 685a1ff

Browse files
committed
Fix imports
1 parent b4ebd59 commit 685a1ff

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

database/src/pool.rs

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -316,16 +316,11 @@ impl Pool {
316316
mod tests {
317317
use super::*;
318318
use crate::metric::Metric;
319-
use crate::{tests::run_db_test, Commit, CommitType, Date};
319+
use crate::tests::run_postgres_test;
320+
use crate::{tests::run_db_test, BenchmarkRequestStatus, Commit, CommitType, Date};
320321
use chrono::Utc;
321322
use std::str::FromStr;
322323

323-
use super::*;
324-
use crate::{
325-
tests::{run_db_test, run_postgres_test},
326-
BenchmarkRequestStatus, Commit, CommitType, Date,
327-
};
328-
329324
/// Create a Commit
330325
fn create_commit(commit_sha: &str, time: chrono::DateTime<Utc>, r#type: CommitType) -> Commit {
331326
Commit {

0 commit comments

Comments
 (0)