users: Don't delete 'admin' group when running unit tests

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
Sunil Mohan Adapa 2019-08-19 19:37:14 -07:00 committed by James Valleroy
parent 7499b687c8
commit b01ac54dd3
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808

View File

@ -132,7 +132,8 @@ def _create_user(username=None, groups=None):
if groups:
for group in groups:
_call_action(['add-user-to-group', username, group])
_cleanup_groups.add(group)
if group != 'admin':
_cleanup_groups.add(group)
_cleanup_users.add(username)
return username, password