From e7eb55a4cf9daa0da4a9bda6b82946221fc0a43b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20Miguel?= Date: Thu, 8 Apr 2021 02:55:34 -0300 Subject: [PATCH] test: make_dummy_files: return an error instead of panicking --- src/test.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/test.rs b/src/test.rs index 95700a0..254f67d 100644 --- a/src/test.rs +++ b/src/test.rs @@ -20,7 +20,6 @@ where let _ = paths .iter() .map(make_dummy_file) - .map(Result::unwrap) .collect::>(); Ok(()) }