summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/test_xmlrpc/test_rolegroup_plugin.py3
-rw-r--r--tests/test_xmlrpc/test_taskgroup_plugin.py3
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,