diff options
| author | Devin Carlen <devin.carlen@gmail.com> | 2011-03-30 20:33:56 -0700 |
|---|---|---|
| committer | Devin Carlen <devin.carlen@gmail.com> | 2011-03-30 20:33:56 -0700 |
| commit | ce5ad4acbc81c8c444d7b6a02400d6bc0ef6b233 (patch) | |
| tree | 7ef810cf413a0e7e1d8a3c708aa4d3cb8b1df39e /smoketests | |
| parent | eda275741f5865a1bf58d0176b36d4d99bfeb015 (diff) | |
| download | nova-ce5ad4acbc81c8c444d7b6a02400d6bc0ef6b233.tar.gz nova-ce5ad4acbc81c8c444d7b6a02400d6bc0ef6b233.tar.xz nova-ce5ad4acbc81c8c444d7b6a02400d6bc0ef6b233.zip | |
Removed adminclient and referred to pypi nova_adminclient module
Diffstat (limited to 'smoketests')
| -rw-r--r-- | smoketests/test_admin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smoketests/test_admin.py b/smoketests/test_admin.py index 46e5b2233..1b7a8d673 100644 --- a/smoketests/test_admin.py +++ b/smoketests/test_admin.py @@ -30,7 +30,6 @@ possible_topdir = os.path.normpath(os.path.join(os.path.abspath(sys.argv[0]), if os.path.exists(os.path.join(possible_topdir, 'nova', '__init__.py')): sys.path.insert(0, possible_topdir) -from nova import adminclient from smoketests import flags from smoketests import base @@ -47,6 +46,7 @@ TEST_PROJECTNAME = '%sproject' % TEST_PREFIX class AdminSmokeTestCase(base.SmokeTestCase): def setUp(self): + import nova_adminclient as adminclient self.admin = adminclient.NovaAdminClient( access_key=os.getenv('EC2_ACCESS_KEY'), secret_key=os.getenv('EC2_SECRET_KEY'), |
