adjust buffer-formatting assertion to reflect final newline addition

This commit is contained in:
Max Brunsfeld 2023-02-28 08:34:38 -08:00
parent 1deff43639
commit e7b56f6342

View file

@ -3892,9 +3892,11 @@ async fn test_formatting_buffer(
}) })
.await .await
.unwrap(); .unwrap();
// The edits from the LSP are applied, and a final newline is added.
assert_eq!( assert_eq!(
buffer_b.read_with(cx_b, |buffer, _| buffer.text()), buffer_b.read_with(cx_b, |buffer, _| buffer.text()),
"let honey = \"two\"" "let honey = \"two\"\n"
); );
// Ensure buffer can be formatted using an external command. Notice how the // Ensure buffer can be formatted using an external command. Notice how the