From f94a3d1751aedfabe2ba327511dc8bbe2519a27f Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Fri, 1 Oct 2010 14:49:42 -0400 Subject: Fix a couple of test cases broken by the POSIX group change. They were made as non-POSIX originally, keep them that way. --- tests/test_xmlrpc/test_rolegroup_plugin.py | 3 ++- tests/test_xmlrpc/test_taskgroup_plugin.py | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/test_xmlrpc/test_rolegroup_plugin.py b/tests/test_xmlrpc/test_rolegroup_plugin.py index 131ef068..c66bdc47 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 fa728278..8401fbdc 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, -- cgit