mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Fix a couple of test cases broken by the POSIX group change.
They were made as non-POSIX originally, keep them that way.
This commit is contained in:
@@ -120,7 +120,8 @@ class test_rolegroup(Declarative):
|
||||
dict(
|
||||
desc='Create %r' % group1,
|
||||
command=(
|
||||
'group_add', [group1], dict(description=u'group desc 1')
|
||||
'group_add', [group1], dict(description=u'group desc 1',
|
||||
nonposix=True,)
|
||||
),
|
||||
expected=dict(
|
||||
value=group1,
|
||||
|
||||
@@ -139,7 +139,8 @@ class test_taskgroup(Declarative):
|
||||
dict(
|
||||
desc='Create %r' % group1,
|
||||
command=(
|
||||
'group_add', [group1], dict(description=u'Test group desc 1')
|
||||
'group_add', [group1], dict(description=u'Test group desc 1',
|
||||
nonposix=True,)
|
||||
),
|
||||
expected=dict(
|
||||
value=group1,
|
||||
|
||||
Reference in New Issue
Block a user