Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/tests/test/commands.rs')
| -rw-r--r-- | helix-term/tests/test/commands.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/helix-term/tests/test/commands.rs b/helix-term/tests/test/commands.rs index 2af1a054..29f76cfb 100644 --- a/helix-term/tests/test/commands.rs +++ b/helix-term/tests/test/commands.rs @@ -734,7 +734,7 @@ async fn surround_replace_ts() -> anyhow::Result<()> { const INPUT: &str = r#"\ fn foo() { if let Some(_) = None { - todo!("f#[|o]#o)"); + testing!("f#[|o]#o)"); } } "#; @@ -744,7 +744,7 @@ fn foo() { r#"\ fn foo() { if let Some(_) = None { - todo!('f#[|o]#o)'); + testing!('f#[|o]#o)'); } } "#, @@ -757,7 +757,7 @@ fn foo() { r#"\ fn foo() { if let Some(_) = None [ - todo!("f#[|o]#o)"); + testing!("f#[|o]#o)"); ] } "#, @@ -770,7 +770,7 @@ fn foo() { r#"\ fn foo() { if let Some(_) = None { - todo!{"f#[|o]#o)"}; + testing!{"f#[|o]#o)"}; } } "#, |