Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
cmungall committed Oct 1, 2024
1 parent 4786357 commit 7f3cdf5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_implementations/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -727,7 +727,7 @@ def test_graph_projections(self, oi: BasicOntologyInterface, supported: Optional
:return:
"""
test = self.test
expected = [
cases = [
(True, "B", "P", "CTestSome", "some", "tbox", True),
(True, "B", "P", "ITestValue", "value", "abox", True),
(True, "B", OWL_EQUIVALENT_CLASS, "CTestEquiv", "equiv", "tbox", True),
Expand All @@ -743,7 +743,7 @@ def test_graph_projections(self, oi: BasicOntologyInterface, supported: Optional
all_tbox_relations = list(oi.relationships(include_tbox=True, include_abox=False))
all_abox_relations = list(oi.relationships(include_tbox=False, include_abox=True))
all_entailed_relations = list(oi.relationships(include_entailed=True))
for expected, s, p, o, projection, typ, direct in expected:
for expected, s, p, o, projection, typ, direct in cases:
if supported is not None and projection is not None and projection not in supported:
continue
s = "ex:" + s
Expand Down

0 comments on commit 7f3cdf5

Please sign in to comment.