diff options
author | Skyler Hawthorne | 2022-06-14 02:18:17 +0000 |
---|---|---|
committer | Skyler Hawthorne | 2022-06-19 04:00:31 +0000 |
commit | 5f7c247430998fabceb55d4689118dd75e2bdfb1 (patch) | |
tree | 04f6e17d1e08725e2be1ec496d1ff2e823892761 | |
parent | 665286c199b344c0bd65772156b5e460ff11d768 (diff) |
replace phrase in tests
-rw-r--r-- | helix-term/tests/test/write.rs | 8 |
1 files 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<ret><esc>:w<ret>"), + Some("ithe gostak distims the doshes<ret><esc>:w<ret>"), 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<ret><esc>:wq<ret>"), + Some("ithe gostak distims the doshes<ret><esc>:wq<ret>"), 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 ); |