From 2f8f5b9dbb695b489ab14c78f70b9f9f57139969 Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Sun, 8 Jun 2025 20:30:15 +0100 Subject: [PATCH] another test --- tests/test_markup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_markup.py b/tests/test_markup.py index ff8c3edb7..346b0a903 100644 --- a/tests/test_markup.py +++ b/tests/test_markup.py @@ -18,6 +18,7 @@ from textual.markup import MarkupError, to_content ("[0", Content("[0")), ("[0]", Content("[0]")), ("[red", Content("[red")), + ("[red]", Content("")), ("foo", Content("foo")), ("foo\n", Content("foo\n")), ("foo\nbar", Content("foo\nbar")),