From dbc9f6b42f2757c637b15bdabb0658981d326f92 Mon Sep 17 00:00:00 2001 From: sxyazi Date: Wed, 17 Dec 2025 22:53:28 +0800 Subject: [PATCH] .. --- yazi-fs/src/path/expand.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yazi-fs/src/path/expand.rs b/yazi-fs/src/path/expand.rs index d016d91a..12be0269 100644 --- a/yazi-fs/src/path/expand.rs +++ b/yazi-fs/src/path/expand.rs @@ -130,7 +130,7 @@ mod tests { for (input, expected) in cases { let u: UrlBuf = input.parse()?; - assert_eq!(format!("{:?}", expand_url(u)), expected); + assert_eq!(format!("{:?}", expand_url(u).as_url()), expected); } Ok(())