From ac5a2b6ad0bdb298a9a15ac68be1dc7a68ac15ce Mon Sep 17 00:00:00 2001 From: softprops Date: Sun, 25 Aug 2019 15:13:44 -0400 Subject: [PATCH] remove debug --- src/main.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index e3ad57e..8feff6f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -132,9 +132,6 @@ mod tests { #[test] fn paths_resolves_pattern_to_file_paths() -> Result<(), Box> { - for p in paths(vec!["tests/data/**/*"])? { - println!("{}", p.display()) - } assert_eq!(paths(vec!["tests/data/**/*"])?.into_iter().count(), 1); Ok(()) }