From a5a4a1bf8f3d7ee1965e982a4c92adfd0af37ec1 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 17 Nov 2022 10:02:44 +0530 Subject: [PATCH] Increase timeout in test --- kitty_tests/ssh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty_tests/ssh.py b/kitty_tests/ssh.py index 4125ae256..f8380b094 100644 --- a/kitty_tests/ssh.py +++ b/kitty_tests/ssh.py @@ -237,7 +237,7 @@ copy --exclude */w.* d1 pty = self.check_bootstrap(sh, tdir, ok_login_shell, val) num_lines = len(pty.screen_contents().splitlines()) pty.send_cmd_to_child('echo "$TERM=fruity"') - pty.wait_till(lambda: 'kitty=fruity' in pty.screen_contents()) + pty.wait_till(lambda: 'kitty=fruity' in pty.screen_contents(), timeout=30) pty.wait_till(lambda: len(pty.screen_contents().splitlines()) >= num_lines + 2) self.assertEqual(pty.screen.cursor.shape, 0) self.assertNotIn(b'\x1b]133;', pty.received_bytes)