(self, tmp_path)
| 476 | assert get_timeout() == 1200.0 |
| 477 | |
| 478 | def test_timeout_reset_when_config_has_none(self, tmp_path): |
| 479 | from openkb.cli import _setup_llm_key |
| 480 | from openkb.config import get_timeout, set_timeout |
| 481 | |
| 482 | set_timeout(999.0) |
| 483 | kb = self._make_kb(tmp_path, "gpt-5.4-mini") |
| 484 | _setup_llm_key(kb) |
| 485 | assert get_timeout() is None |
nothing calls this directly
no test coverage detected