Fix module imports in run-analysis

This commit is contained in:
Jordan Wages 2025-07-19 02:55:15 -05:00
commit 0a05f0c010
3 changed files with 7 additions and 6 deletions

View file

@ -26,7 +26,7 @@ def test_script_invokes_commands(tmp_path):
lines = calls.read_text().strip().splitlines()
assert lines == [
"scripts/analyze.py check-missing-domains",
"scripts/analyze.py suggest-cache",
"scripts/analyze.py detect-threats",
"-m scripts.analyze check-missing-domains",
"-m scripts.analyze suggest-cache",
"-m scripts.analyze detect-threats",
]