From 35a3742f21bc914072e5be3dae18a362d6bd68b1 Mon Sep 17 00:00:00 2001 From: Sam Bull Date: Mon, 13 Apr 2026 13:08:42 +0100 Subject: [PATCH] Title slug --- pelican/tests/test_theme.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pelican/tests/test_theme.py b/pelican/tests/test_theme.py index 5f16d5c1..25d23b97 100644 --- a/pelican/tests/test_theme.py +++ b/pelican/tests/test_theme.py @@ -156,12 +156,12 @@ class TestTemplateInheritance(LoggedTestCase): cat_file = os.path.join(self.temp_output, "category", "test.html") with open(cat_file) as f: cat_content = f.read() - self.assertIn('title="test Category Atom Feed"', cat_content) + self.assertIn('title="Test Category Atom Feed"', cat_content) tag_file = os.path.join(self.temp_output, "tag", "foo.html") with open(tag_file) as f: tag_content = f.read() - self.assertIn('title="foo Tag Atom Feed"', tag_content) + self.assertIn('title="Foo Tag Atom Feed"', tag_content) if __name__ == "__main__":