8000 fix test · spdx/tools-python@f172aa3 · GitHub
[go: up one dir, main page]

Skip to content

Commit f172aa3

Browse files
committed
fix test
Signed-off-by: Meret Behrens <meret.behrens@tngtech.com>
1 parent 20cc1d8 commit f172aa3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/spdx/writer/rdf/test_creation_info_writer.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ def test_add_creation_info_to_graph():
2424

2525
assert (None, RDF.type, SPDX_NAMESPACE.SpdxDocument) in graph
2626
assert (URIRef(f"{creation_info.document_namespace}#{creation_info.spdx_id}"), None, None) in graph
27-
assert (None, SPDX_NAMESPACE.dataLicense, URIRef(f"https://spdx.org/licenses/{creation_info.data_license}"))
27+
assert (
28+
None, SPDX_NAMESPACE.dataLicense, URIRef(f"https://spdx.org/licenses/{creation_info.data_license}")) in graph
2829
assert (None, SPDX_NAMESPACE.name, Literal(creation_info.name)) in graph
2930
assert (None, SPDX_NAMESPACE.specVersion, Literal(creation_info.spdx_version)) in graph
3031
assert (None, SPDX_NAMESPACE.creationInfo, None) in graph

0 commit comments

Comments
 (0)
0