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: v19.0.0~87^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=994ae0d633843e61eae91f409ec3b0336db71dc3;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 --- diff --git a/qa/tasks/cephfs/test_snap_schedules.py b/qa/tasks/cephfs/test_snap_schedules.py index d82404982dd8..8f9132566da5 100644 --- a/qa/tasks/cephfs/test_snap_schedules.py +++ b/qa/tasks/cephfs/test_snap_schedules.py @@ -588,8 +588,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')