diff --git a/docs/doctor-findings.md b/docs/doctor-findings.md index e66d4824..510a276a 100644 --- a/docs/doctor-findings.md +++ b/docs/doctor-findings.md @@ -72,7 +72,6 @@ Check commands that return an object include an aggregate `status` and a { "schema_version": 1, "status": "ok", - "profiles": [], "checks": [] } ``` diff --git a/tests/test_doctor_findings_docs.py b/tests/test_doctor_findings_docs.py index 4dec3fee..47d1e56e 100644 --- a/tests/test_doctor_findings_docs.py +++ b/tests/test_doctor_findings_docs.py @@ -15,12 +15,11 @@ def json_examples() -> list[dict]: return examples -def test_top_level_diagnostic_json_example_includes_profiles() -> None: +def test_top_level_diagnostic_json_example_omits_profiles_without_profile_option() -> None: example = json_examples()[0] assert example == { "schema_version": 1, "status": "ok", - "profiles": [], "checks": [], }