Skip to content

Commit

Permalink
chore: Satisfy mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
jamilraichouni committed Jan 14, 2025
1 parent 48487cf commit df5e8b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_capella_model_explorer.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def test_template_loading():
"description": "This is a test template",
"scope": {"type": "System", "below": "System"},
}
Template(**template_raw)
Template.model_validate(template_raw)


def test_category_loading():
Expand All @@ -44,7 +44,7 @@ def test_category_loading():
"idx": "test",
"templates": [template_raw],
}
TemplateCategory(**category_raw)
TemplateCategory.model_validate(category_raw)


def test_index_templates():
Expand Down

0 comments on commit df5e8b4

Please sign in to comment.