]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
qa: use correct imports to resolve fuse_mount and kernel_mount 54471/head
authorMilind Changire <mchangir@redhat.com>
Mon, 13 Nov 2023 07:26:50 +0000 (12:56 +0530)
committerMilind Changire <mchangir@redhat.com>
Mon, 13 Nov 2023 07:26:50 +0000 (12:56 +0530)
Fixes: https://tracker.ceph.com/issues/62706
Signed-off-by: Milind Changire <mchangir@redhat.com>
qa/tasks/cephfs/test_snap_schedules.py

index d82404982dd890e27cd7f7445c2e494cb73eb9e4..8f9132566da51067d65164930205ddc3293b3801 100644 (file)
@@ -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')