From b38eae1f98f63607af43e63852ff8488d8916d68 Mon Sep 17 00:00:00 2001 From: Michael Davis Date: Mon, 10 Mar 2025 11:09:46 -0400 Subject: [PATCH] minor: Fix native line-ending handling in trimming integration tests --- helix-term/tests/test/commands/write.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helix-term/tests/test/commands/write.rs b/helix-term/tests/test/commands/write.rs index f7123f686..4b78e14c4 100644 --- a/helix-term/tests/test/commands/write.rs +++ b/helix-term/tests/test/commands/write.rs @@ -432,7 +432,7 @@ async fn test_write_trim_trailing_whitespace() -> anyhow::Result<()> { ..Default::default() }) .with_file(file.path(), None) - .with_input_text("#[f|]#oo \n\n \nbar ") + .with_input_text(LineFeedHandling::Native.apply("#[f|]#oo \n\n \nbar ")) .build()?; test_key_sequence(&mut app, Some(":w"), None, false).await?; @@ -454,7 +454,7 @@ async fn test_write_trim_final_newlines() -> anyhow::Result<()> { ..Default::default() }) .with_file(file.path(), None) - .with_input_text("#[f|]#oo\n \n\n\n") + .with_input_text(LineFeedHandling::Native.apply("#[f|]#oo\n \n\n\n")) .build()?; test_key_sequence(&mut app, Some(":w"), None, false).await?;