diff options
Diffstat (limited to 'helix-term/tests/test/auto_pairs.rs')
-rw-r--r-- | helix-term/tests/test/auto_pairs.rs | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/helix-term/tests/test/auto_pairs.rs b/helix-term/tests/test/auto_pairs.rs index 52fee55e..ec47a5b4 100644 --- a/helix-term/tests/test/auto_pairs.rs +++ b/helix-term/tests/test/auto_pairs.rs @@ -2,14 +2,9 @@ use super::*; #[tokio::test] async fn auto_pairs_basic() -> anyhow::Result<()> { - test_key_sequence_text_result( - Args::default(), - Config::default(), - ("#[\n|]#", "i(<esc>", "(#[|)]#\n"), - ) - .await?; + test(("#[\n|]#", "i(<esc>", "(#[|)]#\n")).await?; - test_key_sequence_text_result( + test_with_config( Args::default(), Config { editor: helix_view::editor::Config { |