mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 01:16:18 +04:00
cargo fmt
This commit is contained in:
parent
7e29ee6dae
commit
511d9d8a52
@ -1372,7 +1372,7 @@ fn $name() {
|
||||
.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 @@ fn $name() {
|
||||
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<u8> = 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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user