aboutsummaryrefslogtreecommitdiffstats
path: root/tests/text.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/text.rs')
-rw-r--r--tests/text.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/text.rs b/tests/text.rs
index a962741..81201a1 100644
--- a/tests/text.rs
+++ b/tests/text.rs
@@ -160,7 +160,7 @@ fn combining() {
assert_eq!(parser.screen().contents(), "a".repeat(80));
parser.process("\u{0301}".as_bytes());
- assert_eq!(parser.screen().cursor_position(), (0, 80));
+ assert_eq!(parser.screen().cursor_position(), (1, 0));
assert_eq!(parser.screen().contents(), format!("{}รก", "a".repeat(79)));
}