From 2c3a4fd979d9ff19ec548b4e272c09412b4d580f Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Sun, 2 Nov 2025 16:20:45 +0100 Subject: [PATCH] Chore: Fix software tests https://example.org/ changed its content. --- tests/test_outline.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_outline.py b/tests/test_outline.py index 004187c..63cc0d5 100644 --- a/tests/test_outline.py +++ b/tests/test_outline.py @@ -72,7 +72,7 @@ def test_outline_cli_llms_txt_default(): assert result.exit_code == 0, result.output assert "Things to remember when working with Testing" in result.output - assert "for use in illustrative examples in documents" in result.output + assert "for use in documentation examples" in result.output assert "RFC 2606" not in result.output, ( "The text must not be included within the non-optional bundle" ) @@ -90,7 +90,7 @@ def test_outline_cli_llms_txt_optional(): assert result.exit_code == 0, result.output assert "Things to remember when working with Testing" in result.output - assert "for use in illustrative examples in documents" in result.output + assert "for use in documentation examples" in result.output assert "RFC 2606" in result.output, "The text must be included within the optional bundle"