diff options
author | 2017-08-28 07:52:21 -0600 | |
---|---|---|
committer | 2017-08-28 07:52:21 -0600 | |
commit | 1ac3fefd616758779fc1489b5fee8689ec2487d9 (patch) | |
tree | a6e7df817aac4fa30e9bf6babd644b1b60db89d9 | |
parent | 49aaa5d61e87e11c5d5b9ce7dd2fa598f16b82a7 (diff) |
Fixed test names.
Copy/paste issue changed nova to heat.
Change-Id: Ib75fcea4c87375f615862e0542569c8e3d9675e8
Signed-off-by: spisarski <s.pisarski@cablelabs.com>
-rw-r--r-- | snaps/openstack/utils/tests/heat_utils_tests.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/snaps/openstack/utils/tests/heat_utils_tests.py b/snaps/openstack/utils/tests/heat_utils_tests.py index 92432f6..3293b2f 100644 --- a/snaps/openstack/utils/tests/heat_utils_tests.py +++ b/snaps/openstack/utils/tests/heat_utils_tests.py @@ -29,7 +29,7 @@ from snaps.openstack.utils import heat_utils, neutron_utils __author__ = 'spisarski' -logger = logging.getLogger('nova_utils_tests') +logger = logging.getLogger('heat_utils_tests') class HeatSmokeTests(OSComponentTestCase): @@ -37,7 +37,7 @@ class HeatSmokeTests(OSComponentTestCase): Tests to ensure that the heat client can communicate with the cloud """ - def test_nova_connect_success(self): + def test_heat_connect_success(self): """ Tests to ensure that the proper credentials can connect. """ @@ -48,7 +48,7 @@ class HeatSmokeTests(OSComponentTestCase): for stack in stacks: print stack - def test_nova_connect_fail(self): + def test_heat_connect_fail(self): """ Tests to ensure that the improper credentials cannot connect. """ |