Fix mouse handling tests to send valid escape sequences

This commit is contained in:
Johannes Altmanninger 2024-03-30 16:56:50 +01:00
parent 22717339b4
commit 16c5ca2609

View file

@ -22,10 +22,10 @@ sp.send("\x1b[TABCDEF")
sp.expect_str("reader: Disabling mouse tracking")
# Extended SGR sequences.
sp.send("\x1b[<fooM")
sp.send("\x1b[<1;2;3M")
sp.expect_str("reader: Disabling mouse tracking")
sp.send("\x1b[<foobarm")
sp.send("\x1b[<1;2;3m")
sp.expect_str("reader: Disabling mouse tracking")
sp.sendline("echo done")