Fix KeystoneV2Credentials import error

Original tempest.auth has been moved to tempest_lib.auth:
https://review.openstack.org/#/c/166022/

We should correct KeystoneV2Credentials import module path to tempest_lib.auth

Change-Id: I0299d77d940133908555627bbaec23ac5d667f1e
This commit is contained in:
stanzgy 2015-05-08 11:55:49 +08:00
parent b4e37347da
commit 00a7296e2b
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ limitations under the License.
"""
from tempest_lib.common.rest_client import RestClient
from tempest.auth import KeystoneV2Credentials
from tempest_lib.auth import KeystoneV2Credentials
from tempest.config import CONF
import tempest.manager