diff --git a/src/lib.rs b/src/lib.rs index 0165ec9..beaf5a3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -213,14 +213,6 @@ mod tests { } } - impl Drop for TestTable { - fn drop(&mut self) { - if !self.uri.contains("://") && std::path::Path::new(&self.uri).exists() { - std::fs::remove_file(&self.uri).unwrap(); - } - } - } - fn timetz_to_utc_time(timetz: TimeWithTimeZone) -> Option