mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-14 23:21:35 +00:00
test(wizard): tighten negative debug-flag assertion to also verify run() is called
This commit is contained in:
parent
f7e9ed3ee2
commit
8bc8ce0209
1 changed files with 2 additions and 1 deletions
|
|
@ -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}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue