mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-26 18:22:09 +02:00
Cleanup previous merge
This commit is contained in:
@@ -91,7 +91,7 @@ class BaseTest(TestCase):
|
||||
options = Options(merge_configs(defaults._asdict(), final_options))
|
||||
set_options(options)
|
||||
|
||||
def create_screen(self, cols=5, lines=5, scrollback=5, cell_width=10, cell_height=20, options=None, content=tuple()):
|
||||
def create_screen(self, cols=5, lines=5, scrollback=5, cell_width=10, cell_height=20, options=None, content=()):
|
||||
self.set_options(options)
|
||||
c = Callbacks()
|
||||
s = Screen(c, lines, cols, scrollback, cell_width, cell_height, 0, c)
|
||||
|
||||
@@ -304,7 +304,7 @@ class TestScreen(BaseTest):
|
||||
self.ae(x_before, s.cursor.x)
|
||||
|
||||
def test_scrollback_fill_after_resize(self):
|
||||
def prepare_screen(content=tuple()):
|
||||
def prepare_screen(content=()):
|
||||
return self.create_screen(
|
||||
lines=5,
|
||||
cols=5,
|
||||
|
||||
Reference in New Issue
Block a user