Fix tripleo test - use append correctly

This commit is contained in:
Ade Lee 2017-08-16 21:03:04 +00:00
parent a8ddd68698
commit d3ea01cc31
1 changed files with 2 additions and 2 deletions

View File

@ -74,8 +74,8 @@ class TripleOTest(novajoin_manager.NovajoinScenarioTest):
return None
def test_hosts_are_registered(self):
hosts = CONF.novajoin.tripleo_controllers.append(
CONF.novajoin.tripleo_undercloud)
hosts = list(CONF.novajoin.tripleo_controllers)
hosts.append(CONF.novajoin.tripleo_undercloud)
for host in hosts:
self.verify_host_registered_with_ipa(host)
self.verify_host_has_keytab(host)