Skip to content

Commit 1eb7989

Browse files
committed
fix: update type hierarchy test to match generated MRO
SkillArtifact extends Agentic directly (not Artifact) per the server typedef. Updated test_type_hierarchy assertion accordingly.
1 parent 5d43512 commit 1eb7989

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/unit/model/agentic_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def test_agentic_type_name_is_immutable():
2525
def test_type_hierarchy():
2626
"""Verify MRO: concrete types extend through Agentic → Catalog."""
2727
assert issubclass(Skill, Agentic)
28-
assert issubclass(SkillArtifact, Artifact)
28+
assert issubclass(SkillArtifact, Agentic)
2929
assert issubclass(Artifact, Agentic)
3030
assert issubclass(ContextRepository, Context)
3131
assert issubclass(ContextArtifact, Context)

0 commit comments

Comments
 (0)