1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-25 06:12:16 +03:00

check negative value for ECH, too

This commit is contained in:
Wez Furlong 2018-02-12 08:15:35 -08:00
parent 438822d63b
commit 28179ff981

View File

@ -27,4 +27,6 @@ fn test_ech() {
// check how we handle overflowing the width
term.print("\x1b[12X");
assert_visible_contents(&term, &["h ", "wat?", " "]);
term.print("\x1b[-12X");
assert_visible_contents(&term, &["h ", "wat?", " "]);
}