Fix test
[rbdr/page] / src / file_finder.rs
index a9b84f88d69395bb2f13e2215f13abd13476e936..0512146d3e5c93e53658761fab12f09fb64e189e 100644 (file)
@@ -17,7 +17,7 @@ fn find_files_recursively(root_path: &PathBuf, directory_path: &PathBuf) -> Vec<
             continue;
         }
         if path.is_dir() {
-            result.append(&mut find_files_recursively(root_path, &path))
+            result.append(&mut find_files_recursively(root_path, &path));
         } else {
             let file_type = file_handler.identify(&path);
             result.push(File { path, file_type });