From 8bc8ce02099c6ea4461fce07d36848b4470550fb Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Sat, 11 Jul 2026 16:52:34 +0000 Subject: [PATCH] test(wizard): tighten negative debug-flag assertion to also verify run() is called --- tests/test_litellm/test_setup_wizard.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_litellm/test_setup_wizard.py b/tests/test_litellm/test_setup_wizard.py index 24144292338..0308b4cd160 100644 --- a/tests/test_litellm/test_setup_wizard.py +++ b/tests/test_litellm/test_setup_wizard.py @@ -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}