From: Kefu Chai Date: Fri, 27 Mar 2020 05:33:05 +0000 (+0800) Subject: qa/tasks/mgr: fix imports for py3 X-Git-Tag: v14.2.10~17^2~87 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=1cf2a9ca498f71fce2c75b2bc561075e34ae9e5b;p=ceph.git qa/tasks/mgr: fix imports for py3 Signed-off-by: Kyr Shatskyy (cherry picked from commit e7473b631d862110160c3ef95aa6edce11fe2092) --- diff --git a/qa/tasks/mgr/test_crash.py b/qa/tasks/mgr/test_crash.py index 6877f085dc03..c45c24a48dbb 100644 --- a/qa/tasks/mgr/test_crash.py +++ b/qa/tasks/mgr/test_crash.py @@ -1,6 +1,6 @@ -from mgr_test_case import MgrTestCase +from tasks.mgr.mgr_test_case import MgrTestCase import json import logging diff --git a/qa/tasks/mgr/test_ssh_orchestrator.py b/qa/tasks/mgr/test_ssh_orchestrator.py index 6fce66365c43..f7c1c0edfe66 100644 --- a/qa/tasks/mgr/test_ssh_orchestrator.py +++ b/qa/tasks/mgr/test_ssh_orchestrator.py @@ -1,5 +1,5 @@ import logging -from mgr_test_case import MgrTestCase +from tasks.mgr.mgr_test_case import MgrTestCase log = logging.getLogger(__name__)