diff --git a/novajoin_tempest_plugin/tests/scenario/test_tripleo_deployment.py b/novajoin_tempest_plugin/tests/scenario/test_tripleo_deployment.py index 1d8289f..c96cf37 100644 --- a/novajoin_tempest_plugin/tests/scenario/test_tripleo_deployment.py +++ b/novajoin_tempest_plugin/tests/scenario/test_tripleo_deployment.py @@ -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)