We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 79d3390 + e6ccacc commit 7f60116Copy full SHA for 7f60116
tests/test_all.py
@@ -36,7 +36,7 @@ def load_and_check_graph(
36
) -> rdflib.Graph:
37
graph = rdflib.Graph()
38
graph_filepath = os.path.join(os.path.dirname(__file__), basename)
39
- graph.load(graph_filepath, format="turtle")
+ graph.parse(graph_filepath, format="turtle")
40
conforms = None
41
for triple in graph.triples((None, NS_SH.conforms, None)):
42
assert conforms is None, "Found second result."
@@ -57,7 +57,7 @@ def load_ontology_graph(
57
58
59
60
61
return graph
62
63
def test_coverage():
0 commit comments