Skip to content

Commit

Permalink
Test fix for Networking tests (#894)
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhamsg199 authored Feb 15, 2023
1 parent 905eb11 commit 1f2bca5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion nailgun/entities.py
Original file line number Diff line number Diff line change
Expand Up @@ -5535,7 +5535,9 @@ def __init__(self, server_config=None, **kwargs):
),
'priority': entity_fields.IntegerField(),
'value': entity_fields.StringField(required=True),
'parameter_type': entity_fields.StringField(required=True),
'parameter_type': entity_fields.StringField(
choices=('string', 'boolean', 'integer', 'real', 'array', 'hash', 'yaml', 'json')
),
}
self._path_fields = {
'domain': entity_fields.OneToOneField(Domain),
Expand Down

0 comments on commit 1f2bca5

Please sign in to comment.