From 2247a5029695fd2a25e39960934d71ecca734937 Mon Sep 17 00:00:00 2001 From: LinlyBoi Date: Sat, 31 Dec 2022 23:19:31 +0200 Subject: [PATCH] removed useless use statements because I nuked the non working sqlx tests (will do later) --- backend/src/tests.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/backend/src/tests.rs b/backend/src/tests.rs index d0a57ca..33e3e7e 100644 --- a/backend/src/tests.rs +++ b/backend/src/tests.rs @@ -1,12 +1,8 @@ -use crate::{driver_data::Driver, pog::SqlStruct}; - use super::*; use actix_web::{ http::header::ContentType, test::{self, init_service}, }; -use chrono::NaiveDate; -use sqlx::{PgPool, Row}; //TODO: sqlx offline mode for these tests #[actix_web::test]