summaryrefslogtreecommitdiffstats
path: root/ipatests/test_xmlrpc/test_stageuser_plugin.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipatests/test_xmlrpc/test_stageuser_plugin.py')
-rw-r--r--ipatests/test_xmlrpc/test_stageuser_plugin.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipatests/test_xmlrpc/test_stageuser_plugin.py b/ipatests/test_xmlrpc/test_stageuser_plugin.py
index 0ad017cbd..cfb7ab478 100644
--- a/ipatests/test_xmlrpc/test_stageuser_plugin.py
+++ b/ipatests/test_xmlrpc/test_stageuser_plugin.py
@@ -75,8 +75,8 @@ options_def = OrderedDict([
('random password', {u'random': True}),
])
-options_ok = options_def.values()
-options_ids = options_def.keys()
+options_ok = list(options_def.values())
+options_ids = list(options_def.keys())
@pytest.fixture(scope='class')