Skip to content

Commit

Permalink
Change password type for better support for UI tests (SatelliteQE#507)
Browse files Browse the repository at this point in the history
  • Loading branch information
oshtaier authored and lpramuk committed Sep 26, 2023
1 parent 137711c commit 33a1c2c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion nailgun/entities.py
Original file line number Diff line number Diff line change
Expand Up @@ -3062,7 +3062,8 @@ def __init__(self, server_config=None, **kwargs):
'puppetclass': entity_fields.OneToManyField(PuppetClass),
'puppet_proxy': entity_fields.OneToOneField(SmartProxy),
'realm': entity_fields.OneToOneField(Realm),
'root_pass': entity_fields.StringField(length=(8, 30)),
'root_pass': entity_fields.StringField(
length=(8, 30), str_type='alpha'),
'subnet': entity_fields.OneToOneField(Subnet),
'uuid': entity_fields.StringField(),
}
Expand Down

0 comments on commit 33a1c2c

Please sign in to comment.