From 51995f7fd549b9316b6731fc6ecdd37f23ca7212 Mon Sep 17 00:00:00 2001 From: Ivan Kolodyazhny Date: Wed, 7 Jun 2017 23:05:29 +0300 Subject: [PATCH] Use 'os_primary' property insead of deprecated 'os' Read-only property 'os' has moved to 'os_primary' in version 'Pike' and will be removed in version 'Queens' Change-Id: Ice03458c69d0e107dac6f6735391c3e8567cf855 --- tempest_horizon/tests/scenario/test_dashboard_basic_ops.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tempest_horizon/tests/scenario/test_dashboard_basic_ops.py b/tempest_horizon/tests/scenario/test_dashboard_basic_ops.py index e9f72d6..a7cd4dd 100644 --- a/tempest_horizon/tests/scenario/test_dashboard_basic_ops.py +++ b/tempest_horizon/tests/scenario/test_dashboard_basic_ops.py @@ -137,7 +137,7 @@ class TestDashboardBasicOps(test.BaseTestCase): @decorators.idempotent_id('4f8851b1-0e69-482b-b63b-84c6e76f6c80') def test_basic_scenario(self): - creds = self.os.credentials + creds = self.os_primary.credentials self.check_login_page() self.user_login(creds.username, creds.password) self.check_home_page()