From a3f1230aea5561505225543c72f1a3d692fcc6f1 Mon Sep 17 00:00:00 2001 From: Liam Young Date: Wed, 1 Apr 2020 09:08:10 +0000 Subject: [PATCH] Remove prints --- zaza/openstack/charm_tests/test_utils.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/zaza/openstack/charm_tests/test_utils.py b/zaza/openstack/charm_tests/test_utils.py index c64ff31..d94ded7 100644 --- a/zaza/openstack/charm_tests/test_utils.py +++ b/zaza/openstack/charm_tests/test_utils.py @@ -111,7 +111,6 @@ class CharmTestAssertions: :type action: juju.action.Action :raises: AssertionError if the assertion fails. """ - print("Checking action") if action.status != 'completed': msg = ("Action '{name}' exited with status '{status}': " "'{message}'").format(**action.data) @@ -130,7 +129,6 @@ class CharmTestAssertions: :type action: dict :raises: AssertionError if the assertion fails. """ - print("Checking remote run") if int(run_output['Code']) != 0: raise AssertionError("Command failed: {}".format(run_output))