Compare commits

..

1 Commits

Author SHA1 Message Date
Sergio Martínez Portela
faaa4aa237 Add (failing) test for tags property read.
Some checks failed
Testing / pytest (push) Failing after 25s
Testing / mypy (push) Successful in 37s
Testing / style-formatting (push) Failing after 30s
Testing / style-sorted-imports (push) Successful in 32s
Testing / stability-extra-test (push) Successful in 29s
2024-09-01 14:17:32 +02:00

View File

@ -879,7 +879,7 @@ class TestSerde(unittest.TestCase):
self.assertEqual(doc.tags, ['filetag'])
h1_1, h1_2 = doc.getTopHeadlines()
h1_1, h1_2 = doc.getTopLevelHeadlines()
self.assertEqual(sorted(h1_1.tags), ['filetag', 'h1tag'])
self.assertEqual(sorted(h1_2.tags), ['filetag', 'otherh1tag'])