diff options
Diffstat (limited to 'helix-term/tests/integration.rs')
-rw-r--r-- | helix-term/tests/integration.rs | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/helix-term/tests/integration.rs b/helix-term/tests/integration.rs index 376bc88b..11bc4e4c 100644 --- a/helix-term/tests/integration.rs +++ b/helix-term/tests/integration.rs @@ -13,13 +13,7 @@ mod test { #[tokio::test] async fn hello_world() -> anyhow::Result<()> { - test_key_sequence_text_result( - Args::default(), - Config::default(), - ("#[\n|]#", "ihello world<esc>", "hello world#[|\n]#"), - ) - .await?; - + test(("#[\n|]#", "ihello world<esc>", "hello world#[|\n]#")).await?; Ok(()) } |