Skip to content

Commit 7b08eaa

Browse files
committed
Update error message check
1 parent 0a44f2d commit 7b08eaa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1568,7 +1568,7 @@ def test_camelCase_access_raises_attribute_error() -> None:
15681568
# Test getting an attribute via camelCase alias raises AttributeError
15691569
with pytest.raises(
15701570
AttributeError,
1571-
match="'AgentCard' object has no attribute 'defaultInputModes'. Did you mean: 'default_input_modes'?",
1571+
match="'AgentCard' object has no attribute 'defaultInputModes'",
15721572
):
15731573
_ = agent_card.defaultInputModes
15741574

0 commit comments

Comments
 (0)