test(wizard): tighten negative debug-flag assertion to also verify run() is called

This commit is contained in:
Devin AI 2026-07-11 16:52:34 +00:00
parent f7e9ed3ee2
commit 8bc8ce0209

View file

@ -341,5 +341,6 @@ def test_run_setup_wizard_enables_debug_when_requested(monkeypatch):
assert calls == {"debug": 1, "run": 1}
calls["debug"] = 0
calls["run"] = 0
wiz.run_setup_wizard(debug=False)
assert calls["debug"] == 0
assert calls == {"debug": 0, "run": 1}