diff options
author | Rob Crittenden <rcritten@redhat.com> | 2010-10-01 14:49:42 -0400 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2010-10-04 09:53:42 -0400 |
commit | f94a3d1751aedfabe2ba327511dc8bbe2519a27f (patch) | |
tree | 2732f9cf2c66dd6442ab53a5b3e25c717012aa60 | |
parent | b7097fc8c9096e3e8bf4a01edc6d7274c9c4cac0 (diff) | |
download | freeipa-f94a3d1751aedfabe2ba327511dc8bbe2519a27f.tar.gz freeipa-f94a3d1751aedfabe2ba327511dc8bbe2519a27f.tar.xz freeipa-f94a3d1751aedfabe2ba327511dc8bbe2519a27f.zip |
Fix a couple of test cases broken by the POSIX group change.
They were made as non-POSIX originally, keep them that way.
-rw-r--r-- | tests/test_xmlrpc/test_rolegroup_plugin.py | 3 | ||||
-rw-r--r-- | tests/test_xmlrpc/test_taskgroup_plugin.py | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/tests/test_xmlrpc/test_rolegroup_plugin.py b/tests/test_xmlrpc/test_rolegroup_plugin.py index 131ef068c..c66bdc474 100644 --- a/tests/test_xmlrpc/test_rolegroup_plugin.py +++ b/tests/test_xmlrpc/test_rolegroup_plugin.py @@ -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, diff --git a/tests/test_xmlrpc/test_taskgroup_plugin.py b/tests/test_xmlrpc/test_taskgroup_plugin.py index fa7282784..8401fbdc3 100644 --- a/tests/test_xmlrpc/test_taskgroup_plugin.py +++ b/tests/test_xmlrpc/test_taskgroup_plugin.py @@ -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, |