From: Travis Rhoden Date: Mon, 25 May 2015 13:58:01 +0000 (-0400) Subject: [RM-11742] Cleanup imports in test_cli_new X-Git-Tag: v1.5.26~15^2~5 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=edaf3b5cfdd0140c435c14ea104f109a54c81867;p=ceph-deploy.git [RM-11742] Cleanup imports in test_cli_new Signed-off-by: Travis Rhoden --- diff --git a/ceph_deploy/tests/test_cli_new.py b/ceph_deploy/tests/test_cli_new.py index 478bee9..d8a2f5e 100644 --- a/ceph_deploy/tests/test_cli_new.py +++ b/ceph_deploy/tests/test_cli_new.py @@ -1,11 +1,12 @@ -from mock import patch import re import subprocess import uuid -from .. import conf -from ..cli import main -from .directory import directory +from mock import patch + +from ceph_deploy import conf +from ceph_deploy.cli import _main as main +from ceph_deploy.tests.directory import directory def test_help(tmpdir, cli):