From: spisarski Date: Thu, 27 Apr 2017 09:30:10 +0000 (+0200) Subject: Fixed issue caused previous patch which did not merge correctly. X-Git-Tag: opnfv-5.0.0~136 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F29%2F33929%2F1;p=snaps.git Fixed issue caused previous patch which did not merge correctly. JIRA: SNAPS-57 Change-Id: I60e7cf2fea37fc337ac7adc01283476a00aca99c Signed-off-by: spisarski --- 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):