Add missing "interface" argument to AltManager
AltManager should have an interface keyword argument in the
initializer and also pass it to the super class.
Change-Id: I0d66609a7649d339f09b5948da5178df15ea43b2
Closes-Bug: #1255559
diff --git a/tempest/clients.py b/tempest/clients.py
index b2399c7..e535fe2 100644
--- a/tempest/clients.py
+++ b/tempest/clients.py
@@ -306,11 +306,12 @@
managed client objects
"""
- def __init__(self):
+ def __init__(self, interface='json'):
conf = config.TempestConfig()
super(AltManager, self).__init__(conf.identity.alt_username,
conf.identity.alt_password,
- conf.identity.alt_tenant_name)
+ conf.identity.alt_tenant_name,
+ interface=interface)
class AdminManager(Manager):