From ce6f99044e8ca016d3686da66ac2af3528c833a0 Mon Sep 17 00:00:00 2001 From: pagedown Date: Sun, 16 Jan 2022 04:14:59 +0800 Subject: [PATCH] ... --- kitty_tests/screen.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kitty_tests/screen.py b/kitty_tests/screen.py index ba2575b8c..d39d1d0d9 100644 --- a/kitty_tests/screen.py +++ b/kitty_tests/screen.py @@ -1043,11 +1043,11 @@ class TestScreen(BaseTest): # resize # get last cmd output with continued output mark - draw_prompt('3'), draw_output(1, 'long_line'), draw_output(2, 'l') + draw_prompt('3'), draw_output(1, 'long_line'), draw_output(2, 'l', False) s.resize(4, 5) s.scroll_to_prompt(-4) self.ae(str(s.visual_line(0)), '$ 0') - self.ae(lco(), '0l\n1l') + self.ae(lco(), '0long_line\n0l\n1l') # last visited cmd output self.ae(lvco(), '0\n1\n2')