From 0ab3e5c7a47511e7c1a0e3d38530f590774a60a8 Mon Sep 17 00:00:00 2001 From: Gage Hugo Date: Thu, 14 Sep 2017 11:43:26 -0500 Subject: [PATCH] Correct import of keystoneauth1 session keystoneclient.session has been long deprecated in favor of keystoneauth1.session. This change corrects the import to use keystoneauth1.session instead of keystoneclient.session. Change-Id: Id792bc82fcf850408e5425f06767f0f65e322e49 --- valet/tests/functional/valet_validator/common/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/valet/tests/functional/valet_validator/common/auth.py b/valet/tests/functional/valet_validator/common/auth.py index 0c7d220..135fb79 100644 --- a/valet/tests/functional/valet_validator/common/auth.py +++ b/valet/tests/functional/valet_validator/common/auth.py @@ -15,8 +15,8 @@ """Auth.""" +from keystoneauth1 import session from keystoneclient.auth.identity import v2 as identity -from keystoneclient import session from oslo_log import log as logging from valet.tests.functional.valet_validator.common.init import CONF