From d2e327c41c5490be32c120b1c845fe6f4977198c Mon Sep 17 00:00:00 2001 From: Ramana Raja Date: Fri, 6 Mar 2020 17:03:51 +0530 Subject: [PATCH] test_volumes: fix _verify_clone_attrs call ... to verify the attributes of clone and source subvolume belonging to different subvolume groups. Introduced in e22d546beb0472bf7e9bb038aa5e781d90a52349 Fixes: https://tracker.ceph.com/issues/44438 Signed-off-by: Ramana Raja --- qa/tasks/cephfs/test_volumes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/tasks/cephfs/test_volumes.py b/qa/tasks/cephfs/test_volumes.py index 8a3cd793b3a..ea8bc937eb2 100644 --- a/qa/tasks/cephfs/test_volumes.py +++ b/qa/tasks/cephfs/test_volumes.py @@ -99,7 +99,7 @@ class TestVolumes(CephFSTestCase): time.sleep(1) self.assertTrue(check < timo) - self._verify_clone_attrs(subvolume, clone) + self._verify_clone_attrs(subvolume, clone, source_group=source_group, clone_group=clone_group) def _generate_random_volume_name(self, count=1): r = random.sample(range(10000), count) -- 2.39.5