Browse Source

bin/taud: fix ci tests

ghassmo 4 years ago
parent
commit
112eb720dc
1 changed files with 4 additions and 1 deletions
  1. 4 1
      bin/taud/src/main.rs

+ 4 - 1
bin/taud/src/main.rs

@@ -417,7 +417,10 @@ async fn main() -> Result<()> {
 
 #[cfg(test)]
 mod tests {
-    use std::fs::{create_dir_all, remove_dir_all};
+    use std::{
+        fs::{create_dir_all, remove_dir_all},
+        path::PathBuf,
+    };
 
     use crate::{month_tasks::MonthTasks, task_info::TaskInfo};