docs(logging): add note to logging customization section regarding existing logs
Generate documentation / build-docs (push) Has been cancelled

This commit is contained in:
2026-07-27 19:56:47 -04:00
parent 29daf01b95
commit 7ca9d19b93
4 changed files with 13 additions and 5 deletions
+1 -1
View File
@@ -693,7 +693,7 @@ def test_customization_notes_render_as_aside():
path = Path(__file__).parent / "manual" / "07-customization.md"
_, body = mt.parse(path)
out = build_manual.prettify(body)
assert out.count('<Aside type="note" title="Note">') == 1, f"expected exactly one Note aside:\n{out}"
assert out.count('<Aside type="note" title="Note">') >= 1, f"expected at least one Note aside:\n{out}"
aside = out.split('<Aside type="note" title="Note">')[1].split("</Aside>")[0]
assert aside.count(" - ") == 4, f"expected exactly 4 bullets inside the aside:\n{aside}"
assert "- Command shadows (rm, cat, ls, ...) react immediately" in aside