From 5f7c247430998fabceb55d4689118dd75e2bdfb1 Mon Sep 17 00:00:00 2001 From: Skyler Hawthorne Date: Mon, 13 Jun 2022 22:18:17 -0400 Subject: [PATCH] replace phrase in tests --- helix-term/tests/test/write.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/helix-term/tests/test/write.rs b/helix-term/tests/test/write.rs index 39efa2ce..8869d881 100644 --- a/helix-term/tests/test/write.rs +++ b/helix-term/tests/test/write.rs @@ -15,7 +15,7 @@ async fn test_write() -> anyhow::Result<()> { test_key_sequence( &mut helpers::app_with_file(file.path())?, - Some("ii can eat glass, it will not hurt me:w"), + Some("ithe gostak distims the doshes:w"), None, false, ) @@ -28,7 +28,7 @@ async fn test_write() -> anyhow::Result<()> { file.as_file_mut().read_to_string(&mut file_content)?; assert_eq!( - helpers::platform_line("i can eat glass, it will not hurt me"), + helpers::platform_line("the gostak distims the doshes"), file_content ); @@ -41,7 +41,7 @@ async fn test_write_quit() -> anyhow::Result<()> { test_key_sequence( &mut helpers::app_with_file(file.path())?, - Some("ii can eat glass, it will not hurt me:wq"), + Some("ithe gostak distims the doshes:wq"), None, true, ) @@ -54,7 +54,7 @@ async fn test_write_quit() -> anyhow::Result<()> { file.as_file_mut().read_to_string(&mut file_content)?; assert_eq!( - helpers::platform_line("i can eat glass, it will not hurt me"), + helpers::platform_line("the gostak distims the doshes"), file_content );