Skip to content

Commit e32f979

Browse files
committed
updated ontology path
1 parent 0fe6d12 commit e32f979

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

tests/test_sync_ontology_save_formats.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
from owlapy.owl_ontology import SyncOntology
2323

2424
_HERE = os.path.dirname(os.path.abspath(__file__))
25-
FATHER_OWL = os.path.join(_HERE, "KGs", "Family", "father.owl")
2625

2726
# All saved files land here – created automatically by _out().
2827
OUTPUT_DIR = os.path.join(_HERE, "saved_formats")
@@ -54,7 +53,7 @@ class TestSyncOntologySaveFormats(unittest.TestCase):
5453
@classmethod
5554
def setUpClass(cls):
5655
os.makedirs(OUTPUT_DIR, exist_ok=True)
57-
cls.source = SyncOntology(FATHER_OWL)
56+
cls.source = SyncOntology("KGs/Family/father.owl")
5857
cls.expected_abox, cls.expected_tbox = _axiom_counts(cls.source)
5958

6059
# ------------------------------------------------------------------

0 commit comments

Comments
 (0)