summaryrefslogtreecommitdiffstats
path: root/ipatests/test_xmlrpc/xmlrpc_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipatests/test_xmlrpc/xmlrpc_test.py')
-rw-r--r--ipatests/test_xmlrpc/xmlrpc_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipatests/test_xmlrpc/xmlrpc_test.py b/ipatests/test_xmlrpc/xmlrpc_test.py
index 4052ab918..0e326e1fa 100644
--- a/ipatests/test_xmlrpc/xmlrpc_test.py
+++ b/ipatests/test_xmlrpc/xmlrpc_test.py
@@ -111,7 +111,7 @@ def fuzzy_set_ci(s):
try:
if not api.Backend.rpcclient.isconnected():
- api.Backend.rpcclient.connect(fallback=False)
+ api.Backend.rpcclient.connect()
res = api.Command['user_show'](u'notfound')
except errors.NetworkError:
server_available = False
@@ -186,7 +186,7 @@ class XMLRPC_test(object):
raise nose.SkipTest('%r: Server not available: %r' %
(cls.__module__, api.env.xmlrpc_uri))
if not api.Backend.rpcclient.isconnected():
- api.Backend.rpcclient.connect(fallback=False)
+ api.Backend.rpcclient.connect()
@classmethod
def teardown_class(cls):