Skip to content

Commit

Permalink
Generated SDK #1873
Browse files Browse the repository at this point in the history
  • Loading branch information
fireblocks_dx_team committed Jun 17, 2024
1 parent fc6fa95 commit 53e7d63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fireblocks/models/policy_rule_check_result.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ class PolicyRuleCheckResult(BaseModel):
@field_validator('status')
def status_validate_enum(cls, value):
"""Validates the enum"""
if value not in set(['ok', 'failure']):
raise ValueError("must be one of enum values ('ok', 'failure')")
if value not in set(['ok', 'failure', 'test']):
raise ValueError("must be one of enum values ('ok', 'failure', 'test')")
return value

model_config = ConfigDict(
Expand Down

0 comments on commit 53e7d63

Please sign in to comment.