summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--rtemsspec/tests/test_content.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/rtemsspec/tests/test_content.py b/rtemsspec/tests/test_content.py
index 123128d4..7505206a 100644
--- a/rtemsspec/tests/test_content.py
+++ b/rtemsspec/tests/test_content.py
@@ -80,6 +80,8 @@ def test_add():
content = Content("BSD-2-Clause", True)
content.add("")
assert str(content) == ""
+ content.add([""])
+ assert str(content) == ""
content.add("a")
assert str(content) == """a
"""