From 3684d199d51e2a0eb6d95b58a12a1facfb50ae5f Mon Sep 17 00:00:00 2001 From: Frode Nordahl Date: Tue, 15 May 2018 00:15:36 +0200 Subject: [PATCH] Fix incorrect import setup_logging() moved from utilities.generic -> utilities.cli --- zaza/charm_tests/dragent/tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zaza/charm_tests/dragent/tests.py b/zaza/charm_tests/dragent/tests.py index 23244a9..3d993c7 100644 --- a/zaza/charm_tests/dragent/tests.py +++ b/zaza/charm_tests/dragent/tests.py @@ -2,7 +2,7 @@ import unittest -from zaza.utilities import generic as generic_utils +from zaza.utilities import cli as cli_utils from zaza.charm_tests.dragent import test @@ -12,7 +12,7 @@ class DRAgentTest(unittest.TestCase): @classmethod def setUpClass(cls): - generic_utils.setup_logging() + cli_utils.setup_logging() def test_bgp_routes(self): test.test_bgp_routes(peer_application_name=self.BGP_PEER_APPLICATION)