We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 000da4c commit c0aea30Copy full SHA for c0aea30
tests/spdx3/writer/tag_value/test_write_document.py
@@ -29,9 +29,7 @@ def test_render_creation_info():
29
output_str = io.StringIO()
30
write_spdx_document(spdx_document, text_output=output_str)
31
32
- assert (
33
- output_str.getvalue()
34
- == """\
+ assert output_str.getvalue() == """\
35
## SPDX Document
36
SPDXID: SPDXRef-FOO
37
name: BAR
@@ -42,4 +40,3 @@ def test_render_creation_info():
42
40
data license: CC0-1.0
43
41
elements:
44
""" # noqa: W291 # elements: are printed with a space
45
- )
0 commit comments