Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/tests/test/auto_indent.rs')
-rw-r--r--helix-term/tests/test/auto_indent.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/helix-term/tests/test/auto_indent.rs b/helix-term/tests/test/auto_indent.rs
index 5ea1024b..5132d44d 100644
--- a/helix-term/tests/test/auto_indent.rs
+++ b/helix-term/tests/test/auto_indent.rs
@@ -6,13 +6,13 @@ async fn auto_indent_c() -> anyhow::Result<()> {
AppBuilder::new().with_file("foo.c", None),
// switches to append mode?
(
- "void foo() {#[|}]#",
+ helpers::platform_line("void foo() {#[|}]#"),
"i<ret><esc>",
- indoc! {"\
+ helpers::platform_line(indoc! {"\
void foo() {
#[|\n]#\
}
- "},
+ "}),
),
)
.await?;