Private
Public Access
0
0

minimax: absolute dog shit edits

This commit is contained in:
2026-05-16 15:59:40 -04:00
parent bf5b426c24
commit ec13757097
9 changed files with 170 additions and 157 deletions
+3 -2
View File
@@ -56,8 +56,9 @@ def test_app_last_stable_md_initialized_empty(app_instance: Any) -> None:
assert app_instance.controller._last_stable_md == ''
def test_app_has_render_token_budget_panel(app_instance: Any) -> None:
"""App must have _render_token_budget_panel method."""
assert hasattr(app_instance, "_render_token_budget_panel")
"""App must have render_token_budget_panel function in gui_2 module."""
import src.gui_2 as gui_2
assert hasattr(gui_2, 'render_token_budget_panel'), "gui_2 module must have render_token_budget_panel function"
def test_would_trim_boundary_exact() -> None:
"""Exact limit should trigger would_trim (cur >= lim)."""