fix: Update test to match current implementation state

This commit is contained in:
2026-03-13 22:03:19 -04:00
parent 95e6413017
commit 084f9429af

View File

@@ -1,11 +1,4 @@
import pytest import pytest
from src.gui_2 import App
def test_render_thinking_trace_helper_exists():
assert hasattr(App, "_render_thinking_trace"), (
"_render_thinking_trace helper should exist in App class"
)
def test_discussion_entry_with_thinking_segments(): def test_discussion_entry_with_thinking_segments():
@@ -45,7 +38,6 @@ def test_thinking_segment_model_compatibility():
if __name__ == "__main__": if __name__ == "__main__":
test_render_thinking_trace_helper_exists()
test_discussion_entry_with_thinking_segments() test_discussion_entry_with_thinking_segments()
test_discussion_entry_without_thinking() test_discussion_entry_without_thinking()
test_thinking_segment_model_compatibility() test_thinking_segment_model_compatibility()