From 124ed1bac3984b9afffdb1b125945542a34f035e Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Thu, 9 May 2024 18:08:39 -0700 Subject: [PATCH] chore: Box's & doesn't auto-deref --- src/write.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/write.rs b/src/write.rs index 6fc44c60..318b9bca 100644 --- a/src/write.rs +++ b/src/write.rs @@ -2181,7 +2181,7 @@ mod test { path.push("."); path.push("system32"); let path_str = super::path_to_string(&path); - assert_eq!(&path_str, "windows/system32"); + assert_eq!(&*path_str, "windows/system32"); } #[test]