From 5d2a276172f5137a4de5e48b5f72ee691ab3d6d3 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 10 Jul 2022 17:25:23 +0530 Subject: [PATCH] ... --- kitty_tests/prewarm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty_tests/prewarm.py b/kitty_tests/prewarm.py index 50bb38ad2..1692e58fe 100644 --- a/kitty_tests/prewarm.py +++ b/kitty_tests/prewarm.py @@ -91,7 +91,7 @@ def socket_child_main(exit_code=0, initial_print=''): pty.wait_till(lambda: 'child ready:' in pty.screen_contents()) pty.set_window_size(columns=cols + 3) pty.wait_till(lambda: f'Screen size changed: {cols + 3}' in pty.screen_contents()) - pty.write_to_child('\x03') + pty.write_to_child('\x03' * 64) pty.wait_till(lambda: 'KeyboardInterrupt' in pty.screen_contents(), timeout=30) wait_for_death(signal.SIGINT)