diff --git a/fuelweb_test/tests/test_ha_one_controller.py b/fuelweb_test/tests/test_ha_one_controller.py index 4a4a5a580..924ec146f 100644 --- a/fuelweb_test/tests/test_ha_one_controller.py +++ b/fuelweb_test/tests/test_ha_one_controller.py @@ -160,7 +160,7 @@ class HAOneControllerFlat(TestBasic): cluster_id = self.fuel_web.get_last_created_cluster() os = os_actions.OpenStackActions( self.fuel_web.get_public_vip(cluster_id), - data['password'], data['tenant']) + data['user'], data['password'], data['tenant']) remote = self.env.get_ssh_to_remote_by_name('slave-01') remote.execute("echo 'Hello World' > /root/test.txt") diff --git a/fuelweb_test/tests/test_services.py b/fuelweb_test/tests/test_services.py index c6349258b..e127dcd3b 100644 --- a/fuelweb_test/tests/test_services.py +++ b/fuelweb_test/tests/test_services.py @@ -790,7 +790,7 @@ class HeatHAOneController(TestBasic): os_conn = os_actions.OpenStackActions( self.fuel_web.get_public_vip(cluster_id), - data['password'], data['tenant']) + data['user'], data['password'], data['tenant']) self.fuel_web.assert_cluster_ready( os_conn, smiles_count=5, networks_count=2, timeout=300)