summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--snaps/openstack/utils/tests/glance_utils_tests.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/snaps/openstack/utils/tests/glance_utils_tests.py b/snaps/openstack/utils/tests/glance_utils_tests.py
index 37b14a5..23c741a 100644
--- a/snaps/openstack/utils/tests/glance_utils_tests.py
+++ b/snaps/openstack/utils/tests/glance_utils_tests.py
@@ -36,8 +36,7 @@ class GlanceSmokeTests(OSComponentTestCase):
Tests to ensure that the proper credentials can connect.
"""
glance = glance_utils.glance_client(self.os_creds)
- nova = nova_utils.nova_client(self.os_creds)
- image = glance_utils.get_image(nova, glance, 'foo')
+ image = glance_utils.get_image(glance, 'foo')
self.assertIsNone(image)
def test_glance_connect_fail(self):
@@ -48,8 +47,7 @@ class GlanceSmokeTests(OSComponentTestCase):
with self.assertRaises(Exception):
glance = glance_utils.glance_client(OSCreds('user', 'pass', 'url', 'project'))
- nova = nova_utils.nova_client(self.os_creds)
- glance_utils.get_image(nova, glance, 'foo')
+ glance_utils.get_image(glance, 'foo')
class GlanceUtilsTests(OSComponentTestCase):