From 4cbad4d91ab8ff28b93cdc2f3096ca5bc319304e Mon Sep 17 00:00:00 2001 From: Lily Foster Date: Fri, 22 Mar 2024 09:48:57 -0400 Subject: [PATCH] Fix cargo test after 94dd1b04d --- src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.rs b/src/app.rs index 8d11662..d8aa6a9 100644 --- a/src/app.rs +++ b/src/app.rs @@ -2017,7 +2017,7 @@ pub(crate) mod test_utils { name == item.name && is_dir == item.metadata.is_dir() - && path == item.path + && path == item.path_opt.as_ref().expect("item should have path") && is_hidden == item.hidden }