aboutsummaryrefslogtreecommitdiffstats
path: root/tests/text.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/text.rs')
-rw-r--r--tests/text.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/text.rs b/tests/text.rs
index 4ece65b..a328d52 100644
--- a/tests/text.rs
+++ b/tests/text.rs
@@ -94,9 +94,9 @@ fn combining() {
screen.process("\u{0301}".as_bytes());
assert_eq!(screen.cell(0, 0).unwrap().contents(), "á");
screen.process(b"\x1b[20;20Habcdefg");
- assert_eq!(screen.window_contents(19, 19, 19, 26), "abcdefg");
+ assert_eq!(screen.window_contents(19, 19, 19, 26), "abcdefg\n");
screen.process("\x1b[20;25H\u{0301}".as_bytes());
- assert_eq!(screen.window_contents(19, 19, 19, 26), "abcdéfg");
+ assert_eq!(screen.window_contents(19, 19, 19, 26), "abcdéfg\n");
screen.process(b"\x1b[10;78Haaa");
assert_eq!(screen.cell(9, 79).unwrap().contents(), "a");
screen.process("\r\n\u{0301}".as_bytes());