Skip to content

Commit 498e6fa

Browse files
committed
test(builder): Fixes for size limits
1 parent 8e80c6e commit 498e6fa

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

tests/workspace/test_builder.py

+7
Original file line numberDiff line numberDiff line change
@@ -486,6 +486,8 @@ def test_automatic_rename_option(
486486
) -> None:
487487
"""Test workspace builder with automatic renaming enabled."""
488488
monkeypatch.setenv("DISABLE_AUTO_TITLE", "true")
489+
monkeypatch.setenv("ROWS", "36")
490+
489491
workspace = ConfigReader._from_file(
490492
test_utils.get_workspace_file("workspace/builder/window_automatic_rename.yaml"),
491493
)
@@ -1506,7 +1508,12 @@ def test_issue_800_default_size_many_windows(
15061508
a lot of panes.
15071509
15081510
See also: https://github.com/tmux-python/tmuxp/issues/800
1511+
1512+
2024-04-07: This test isn't being used as of this date, as default-size is totally
1513+
unused in builder.py.
15091514
"""
1515+
monkeypatch.setenv("ROWS", "36")
1516+
15101517
yaml_workspace = test_utils.get_workspace_file(
15111518
"regressions/issue_800_default_size_many_windows.yaml",
15121519
)

0 commit comments

Comments
 (0)