diff --git a/server/tests/common/mod.rs b/server/tests/common/mod.rs index 9b700f0..bf198d7 100644 --- a/server/tests/common/mod.rs +++ b/server/tests/common/mod.rs @@ -28,10 +28,3 @@ pub async fn setup_test_db() -> PgPool { pool } - -pub async fn clear_adresar_table(pool: &PgPool) { - sqlx::query("TRUNCATE adresar RESTART IDENTITY CASCADE") - .execute(pool) - .await - .expect("Failed to clear adresar table"); -}