Skip to content

Commit

Permalink
Rename? Or copy...
Browse files Browse the repository at this point in the history
  • Loading branch information
GavinMendelGleason committed Feb 16, 2024
1 parent 416b06b commit b8196b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terminusdb_client/tests/test_Schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ def test_type_check():

def test_inheritance(test_schema):
my_schema = test_schema
Person = my_schema.object.get("Person")
Employee = my_schema.object.get("Employee")
Person = test_schema.object.get("Person")
Employee = test_schema.object.get("Employee")
for item in Person._annotations:
if item not in Employee._annotations:
raise AssertionError(f"{item} not inherted")
Expand Down

0 comments on commit b8196b9

Please sign in to comment.