X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=snaps%2Fopenstack%2Futils%2Ftests%2Fheat_utils_tests.py;h=53ac3dd09871baf2716d015f1f8130511a39da1f;hb=632b72619852cc9f321099a524c3478c0b2afa08;hp=081736aaa19b9b5ed2495c8c760d7cbb4f87efab;hpb=9e9e09590cce321f55996c1a31370ffdf28251b0;p=snaps.git diff --git a/snaps/openstack/utils/tests/heat_utils_tests.py b/snaps/openstack/utils/tests/heat_utils_tests.py index 081736a..53ac3dd 100644 --- a/snaps/openstack/utils/tests/heat_utils_tests.py +++ b/snaps/openstack/utils/tests/heat_utils_tests.py @@ -52,7 +52,7 @@ class HeatSmokeTests(OSComponentTestCase): # This should not throw an exception stacks = heat.stacks.list() for stack in stacks: - print stack + logger.info('Stack - %s', stack) def test_heat_connect_fail(self): """ @@ -70,7 +70,7 @@ class HeatSmokeTests(OSComponentTestCase): # This should throw an exception with self.assertRaises(Exception): for stack in stacks: - print stack + logger.info('Stack - %s', stack) class HeatUtilsCreateSimpleStackTests(OSComponentTestCase):