From 6b16eee9406951f9ac17a5f7ceb38e40be694929 Mon Sep 17 00:00:00 2001 From: mrwulf Date: Sun, 16 Aug 2026 20:55:07 +0200 Subject: [PATCH] test: the key-section guard follows the corrected plural heading MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (The guard did its job — the suite was red after the heading fix and my verification chain swallowed the exit code through a pipe and deployed anyway. Chain hygiene restored: pipefail on every gate invocation.) --- tests/test_web_and_witness.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_web_and_witness.py b/tests/test_web_and_witness.py index 0c18907..34ea920 100644 --- a/tests/test_web_and_witness.py +++ b/tests/test_web_and_witness.py @@ -80,7 +80,7 @@ def test_web_endpoints_and_online_proof_roundtrip(tmp_path): with urllib.request.urlopen(base + "/docs", timeout=10) as r: page = r.read().decode() assert "BEGIN PUBLIC KEY" in page - assert "pin this key" in page.lower() + assert "pin these keys" in page.lower() # operator-dropped documents: served by bare name, absent from the # endpoint index, traversal-safe site = tmp_path / "log" / "site"