From 511d9d8a527d8c3dbce6ae1f9a0f5d7beaaf4b28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bla=C5=BE=20Hrastnik?= Date: Fri, 21 Oct 2022 13:26:00 +0900 Subject: [PATCH] cargo fmt --- helix-view/src/document.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/helix-view/src/document.rs b/helix-view/src/document.rs index ca07431b2..9a7febd2d 100644 --- a/helix-view/src/document.rs +++ b/helix-view/src/document.rs @@ -1372,7 +1372,7 @@ mod test { .to_string(); let expectation = std::fs::read_to_string(ref_path).unwrap(); assert_eq!(text[..], expectation[..]); - } + } }; ($name:ident, $label:expr) => { decode!($name, $label, $label); @@ -1389,11 +1389,11 @@ mod test { let ref_path = base_path.join(format!("{}_out_ref.txt", $label)); assert!(path.exists()); assert!(ref_path.exists()); - + let text = Rope::from_str(&std::fs::read_to_string(path).unwrap()); let mut buf: Vec = Vec::new(); helix_lsp::block_on(to_writer(&mut buf, encoding, &text)).unwrap(); - + let expectation = std::fs::read(ref_path).unwrap(); assert_eq!(buf, expectation); }