Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-term/tests/test/movement.rs')
| -rw-r--r-- | helix-term/tests/test/movement.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-term/tests/test/movement.rs b/helix-term/tests/test/movement.rs index 062d3796..77098a33 100644 --- a/helix-term/tests/test/movement.rs +++ b/helix-term/tests/test/movement.rs @@ -379,9 +379,9 @@ async fn match_around_closest_ts() -> anyhow::Result<()> { test_with_config( AppBuilder::new().with_file("foo.rs", None), ( - r#"fn main() {testing!{"f#[|oo]#)"};}"#, + r#"fn main() {todo!{"f#[|oo]#)"};}"#, "mam", - r#"fn main() {testing!{#[|"foo)"]#};}"#, + r#"fn main() {todo!{#[|"foo)"]#};}"#, ), ) .await?; |