mirror of
https://github.com/pewdiepie-archdaemon/odysseus.git
synced 2026-06-15 17:25:26 -04:00
11 lines
310 B
Python
11 lines
310 B
Python
from pathlib import Path
|
|
|
|
|
|
def test_memory_audit_uses_its_own_llm_timeout():
|
|
source = Path("app.py").read_text()
|
|
start = source.index("_TIMEOUT_EXEMPT_PREFIXES =")
|
|
end = source.index("\n)\n", start)
|
|
timeout_exemptions = source[start:end]
|
|
|
|
assert '"/api/memory/audit"' in timeout_exemptions
|