Skip to content

Commit

Permalink
Revert changes to tui_size made when trying to fix the tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeZiminski committed Dec 5, 2024
1 parent 78565a0 commit 8af86a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/tests_tui/tui_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 8af86a0

Please sign in to comment.