Skip to content

Commit

Permalink
fix test for units
Browse files Browse the repository at this point in the history
  • Loading branch information
cmungall committed Jul 13, 2022
1 parent c7c7619 commit f0da5d5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_utils/test_schemaview.py
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,8 @@ def test_metamodel_in_schemaview(self):
uri = view.get_uri(cn, expand=True)
#print(f'{cn}: {c.class_uri} // {uri}')
self.assertIsNotNone(uri)
if cn != 'structured_alias' and cn != 'UnitOfMeasure':
if cn != 'structured_alias' and cn != 'UnitOfMeasure' and cn != 'ValidationReport' and \
cn != 'ValidationResult':
self.assertIn('https://w3id.org/linkml/', uri)
induced_slots = view.class_induced_slots(cn)
for s in induced_slots:
Expand Down

0 comments on commit f0da5d5

Please sign in to comment.