aboutsummaryrefslogtreecommitdiff
path: root/helix-term/tests/integration.rs
diff options
context:
space:
mode:
authorSkyler Hawthorne2022-05-22 17:29:52 +0000
committerSkyler Hawthorne2022-06-19 03:57:47 +0000
commit7c0bca186cdacf070355c1a4ab82121d6a4d2e27 (patch)
tree4b0d1e2a09d676d297ecde75e72a93d27e40fe54 /helix-term/tests/integration.rs
parent526c9be8cadf99519e8f6a9911b3784ab7f2e142 (diff)
rename test helpers
Diffstat (limited to 'helix-term/tests/integration.rs')
-rw-r--r--helix-term/tests/integration.rs8
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(())
}