Skip to content

Commit 60a4237

Browse files
fix: linting errors
1 parent 6d020cd commit 60a4237

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

tests/agent/guardrails/actions/test_escalate_action.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@
4343

4444
ASSET_USER_EMAIL_RECIPIENT = AssetRecipient(
4545
type=AgentEscalationRecipientType.ASSET_USER_EMAIL,
46-
assetName="email_asset",
47-
folderPath="/Shared",
46+
asset_name="email_asset",
47+
folder_path="/Shared",
4848
)
4949

5050
ASSET_GROUP_NAME_RECIPIENT = AssetRecipient(
5151
type=AgentEscalationRecipientType.ASSET_GROUP_NAME,
52-
assetName="group_asset",
53-
folderPath="/Shared",
52+
asset_name="group_asset",
53+
folder_path="/Shared",
5454
)
5555

5656

tests/agent/guardrails/test_guardrails_factory.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,8 @@ def test_escalate_action_is_mapped_with_app_and_asset_recipient(self) -> None:
177177
"""ESCALATE action is mapped to EscalateAction with correct app and recipient."""
178178
recipient = AssetRecipient(
179179
type=AgentEscalationRecipientType.ASSET_USER_EMAIL,
180-
assetName="email_asset",
181-
folderPath="/Shared",
180+
asset_name="email_asset",
181+
folder_path="/Shared",
182182
)
183183

184184
app = AgentGuardrailEscalateActionApp(

0 commit comments

Comments
 (0)