Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion docs/doctor-findings.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ Check commands that return an object include an aggregate `status` and a
{
"schema_version": 1,
"status": "ok",
"profiles": [],
"checks": []
}
```
Expand Down
3 changes: 1 addition & 2 deletions tests/test_doctor_findings_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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": [],
}
Loading