From 8af86a062f027b17d37a03f854320345c14a3e29 Mon Sep 17 00:00:00 2001 From: JoeZiminski Date: Thu, 5 Dec 2024 11:11:42 +0000 Subject: [PATCH] Revert changes to tui_size made when trying to fix the tests. --- tests/tests_tui/tui_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests_tui/tui_base.py b/tests/tests_tui/tui_base.py index 38c93184..6c6faf15 100644 --- a/tests/tests_tui/tui_base.py +++ b/tests/tests_tui/tui_base.py @@ -23,7 +23,7 @@ def tui_size(self): The solution is to ensure the screen is large enough in the test environment. """ - return None # (500, 500) + return (500, 500) @pytest_asyncio.fixture(scope="function") async def empty_project_paths(self, tmp_path_factory, monkeypatch):