From d3ea01cc31031b9b0c8b7a3332c7500114771a27 Mon Sep 17 00:00:00 2001 From: Ade Lee Date: Wed, 16 Aug 2017 21:03:04 +0000 Subject: [PATCH] Fix tripleo test - use append correctly --- .../tests/scenario/test_tripleo_deployment.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)