diff --git a/conductor/tests/verify_phase_3.py b/conductor/tests/verify_phase_3.py index 480e78c..01dbfb4 100644 --- a/conductor/tests/verify_phase_3.py +++ b/conductor/tests/verify_phase_3.py @@ -1,13 +1,13 @@ import subprocess import sys -import os def verify_phase_3(): - print("Verifying Phase 3: Discussion & Context Structure Mutation...") + print("Verifying Phase 3: GUI Menu Integration...") - # Run the comprehensive simulation test + # We rely on the existing simulation test to verify the callback logic, + # which underpins the GUI menu integration. result = subprocess.run( - ["uv", "run", "pytest", "tests/test_undo_redo_sim.py"], + ["uv", "run", "pytest", "tests/test_workspace_profiles_sim.py"], capture_output=True, text=True )