diff --git a/tests/ontopy_tests/test_graph.py b/tests/ontopy_tests/test_graph.py index afd9747a9..4a94fae98 100644 --- a/tests/ontopy_tests/test_graph.py +++ b/tests/ontopy_tests/test_graph.py @@ -223,8 +223,8 @@ def test_emmo_graphs(emmo: "Ontology", tmpdir: "Path") -> None: emmo.Index, emmo.Subjective, emmo.NominalProperty, - emmo.ConventionalQuantitativeProperty, - emmo.ModelledQuantitativeProperty, + emmo.ConventionalProperty, + emmo.ModelledProperty, emmo.Theorization, emmo.Experiment, emmo.Theory, diff --git a/tests/ontopy_tests/test_patch.py b/tests/ontopy_tests/test_patch.py index 36337b2ca..3fd6548ee 100644 --- a/tests/ontopy_tests/test_patch.py +++ b/tests/ontopy_tests/test_patch.py @@ -29,36 +29,40 @@ def test_get_by_label_onto(emmo: "Ontology") -> None: setassert( emmo.Atom.get_annotations(all=True).keys(), { - "qualifiedCardinality", - "minQualifiedCardinality", - "prefLabel", + "IEVReference", + "ISO14040Reference", + "ISO80000Reference", + "ISO9000Reference", + "OWLDLRestrictedAxiom", + "VIMTerm", "abstract", - "hiddenLabel", - "etymology", "altLabel", - "example", - "elucidation", - "OWLDLRestrictedAxiom", - "wikipediaReference", - "conceptualisation", - "logo", "comment", + "conceptualisation", + "contact", + "contributor", + "creator", "dbpediaReference", "definition", - "VIMTerm", - "creator", + "elucidation", + "etymology", + "example", + "figure", "iupacReference", - "contact", + "license", + "logo", + "minQualifiedCardinality", "omReference", - "ISO9000Reference", - "ISO80000Reference", + "prefLabel", + "publisher", + "qualifiedCardinality", "qudtReference", - "contributor", - "license", - "ISO14040Reference", - "figure", "title", - "publisher", + "ucumCode", + "uneceCommonCode", + "unitSymbol", + "wikidataReference", + "wikipediaReference", }, )