@@ -132,7 +132,7 @@ class PydanticUnparsableInner:
132132 three : str
133133
134134 @intersect_message ()
135- def cant_parse_annotation (self , unparseable : PydanticUnparsableInner ) -> None : ...
135+ def cant_parse_annotation (self , unparsable : PydanticUnparsableInner ) -> None : ...
136136
137137 with pytest .raises (SystemExit ):
138138 get_schema_helper ([PydanticUnparsable ])
@@ -158,7 +158,7 @@ def mock_message(self) -> object: ...
158158
159159def test_disallow_object_subtyping (caplog : pytest .LogCaptureFixture ):
160160 # should fail because return type has a subtyping object (dynamic typing)
161- # note that 'object' is evalutated exactly like it is as a root type
161+ # note that 'object' is evaluated exactly like it is as a root type
162162 class MockObjectSubtype (IntersectBaseCapabilityImplementation ):
163163 intersect_sdk_capability_name = 'unused'
164164
@@ -456,7 +456,7 @@ def mock_message(self, param: Inner) -> None: ...
456456
457457
458458def test_disallow_ambiguous_typealiastype (caplog : pytest .LogCaptureFixture ):
459- # should fail because the TypeVar is ambigous and would resolve to "Any"
459+ # should fail because the TypeVar is ambiguous and would resolve to "Any"
460460 class AmbiguousTypeAliasType (IntersectBaseCapabilityImplementation ):
461461 intersect_sdk_capability_name = 'unused'
462462 T = TypeVar ('T' )
@@ -975,4 +975,4 @@ def status_function_2(self) -> str: ...
975975
976976 with pytest .raises (SystemExit ):
977977 get_schema_helper ([CapabilityName1 , CapabilityName2 ])
978- assert 'Only one capabilitiy may have an @intersect_status function' in caplog .text
978+ assert 'Only one capability may have an @intersect_status function' in caplog .text
0 commit comments