Fix for python 3.8

This commit is contained in:
2024-10-26 12:49:32 +02:00
parent 71bce55157
commit a110140d5b
4 changed files with 4 additions and 4 deletions

View File

@@ -7,7 +7,7 @@ class TestContextTemplate(unittest.TestCase):
"""Test context generation with no containers."""
context = generate_context([])
self.assertIn("<context>", context)
self.assertIn("<containers />", context)
self.assertIn("<containers/>", context)
self.assertIn("</context>", context)
def test_single_container(self):