]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
qa: use correct imports to resolve fuse_mount and kernel_mount 54090/head
authorMilind Changire <mchangir@redhat.com>
Mon, 13 Nov 2023 07:26:50 +0000 (12:56 +0530)
committerMilind Changire <mchangir@redhat.com>
Thu, 4 Jan 2024 16:04:33 +0000 (21:34 +0530)
Fixes: https://tracker.ceph.com/issues/62706
Signed-off-by: Milind Changire <mchangir@redhat.com>
(cherry picked from commit 994ae0d633843e61eae91f409ec3b0336db71dc3)

qa/tasks/cephfs/test_snap_schedules.py

index 0264cac3236b2c372112916d8dd9f37713216956..cb0160ff6a66c443a0f90af1dd49ea699db41c20 100644 (file)
@@ -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')