From 4450e1da9d4ba1d100fdcbd533f94cafe3cc7314 Mon Sep 17 00:00:00 2001 From: Hare Date: Thu, 28 May 2026 12:36:32 +0900 Subject: [PATCH] style: revert unrelated manifest path formatting --- crates/manifest/src/paths.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/crates/manifest/src/paths.rs b/crates/manifest/src/paths.rs index f17ae616..f8cccc75 100644 --- a/crates/manifest/src/paths.rs +++ b/crates/manifest/src/paths.rs @@ -281,7 +281,10 @@ mod tests { ("HOME", Some("/h")), ("XDG_RUNTIME_DIR", Some("/run/user/1000")), ]); - assert_eq!(runtime_dir().unwrap(), PathBuf::from("")); + assert_eq!( + runtime_dir().unwrap(), + PathBuf::from("") + ); } #[test]