From eb84990f5a8edc458e04d24cc1cda05316d74ceb Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 19 May 2022 09:55:12 +0530 Subject: [PATCH] Fix #5110 --- kitty_tests/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty_tests/__init__.py b/kitty_tests/__init__.py index d137d90c7..f9308d3cb 100644 --- a/kitty_tests/__init__.py +++ b/kitty_tests/__init__.py @@ -177,7 +177,7 @@ class BaseTest(TestCase): s = Screen(c, lines, cols, scrollback, cell_width, cell_height, 0, c) return s - def create_pty(self, argv, cols=80, lines=25, scrollback=100, cell_width=10, cell_height=20, options=None, cwd=None, env=None): + def create_pty(self, argv, cols=80, lines=100, scrollback=100, cell_width=10, cell_height=20, options=None, cwd=None, env=None): self.set_options(options) return PTY(argv, lines, cols, scrollback, cell_width, cell_height, cwd, env)