minimax: absolute dog shit edits
This commit is contained in:
@@ -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)."""
|
||||
|
||||
Reference in New Issue
Block a user