summaryrefslogtreecommitdiff
path: root/rtemsspec/tests/test_content_sphinx.py
diff options
context:
space:
mode:
Diffstat (limited to 'rtemsspec/tests/test_content_sphinx.py')
-rw-r--r--rtemsspec/tests/test_content_sphinx.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rtemsspec/tests/test_content_sphinx.py b/rtemsspec/tests/test_content_sphinx.py
index 7a9ecd7c..00be7a5f 100644
--- a/rtemsspec/tests/test_content_sphinx.py
+++ b/rtemsspec/tests/test_content_sphinx.py
@@ -276,12 +276,12 @@ def test_license_and_copyrights():
content = SphinxContent()
with pytest.raises(ValueError):
content.register_license("x")
- content.register_copyright("Copyright (C) A")
+ content.register_copyright("Copyright (C) 123 A")
assert str(content) == ""
content.add_licence_and_copyrights()
assert str(content) == """.. SPDX-License-Identifier: CC-BY-SA-4.0
-.. Copyright (C) A
+.. Copyright (C) 123 A
"""