From: Milind Changire Date: Mon, 13 Nov 2023 07:26:50 +0000 (+0530) Subject: qa: use correct imports to resolve fuse_mount and kernel_mount X-Git-Tag: v17.2.8~616^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=be4c60a535d0f988fd5989871f63eb3d3caacee3;p=ceph.git qa: use correct imports to resolve fuse_mount and kernel_mount Fixes: https://tracker.ceph.com/issues/62706 Signed-off-by: Milind Changire (cherry picked from commit 994ae0d633843e61eae91f409ec3b0336db71dc3) --- diff --git a/qa/tasks/cephfs/test_snap_schedules.py b/qa/tasks/cephfs/test_snap_schedules.py index 0264cac3236b..cb0160ff6a66 100644 --- a/qa/tasks/cephfs/test_snap_schedules.py +++ b/qa/tasks/cephfs/test_snap_schedules.py @@ -529,8 +529,8 @@ class TestSnapSchedulesSnapdir(TestSnapSchedulesHelper): self.mount_a.run_shell(['rmdir', snapshot_path]) def get_snap_dir_name(self): - from tasks.cephfs.fuse_mount import FuseMount - from tasks.cephfs.kernel_mount import KernelMount + from .fuse_mount import FuseMount + from .kernel_mount import KernelMount if isinstance(self.mount_a, KernelMount): sdn = self.mount_a.client_config.get('snapdirname', '.snap')