From 741e6e1c3387605223821e89bdee39b182e297bd Mon Sep 17 00:00:00 2001 From: Rishabh Dave Date: Fri, 22 Mar 2024 22:35:06 +0530 Subject: [PATCH] qa/cephfs: in test_volumes.py, don't use deleted helper methods _generate_random_group_name() and _generate_random_subvolume_name() were deleted in one of the commit from this series of commits. And PR #54207 adds calls to these helper methods. This wasn't the case for the main branch version of this series of commits. This is why this issue is being fixed in Reef branch directly through a fresh/new commit instead of backporting a commit. Signed-off-by: Rishabh Dave --- qa/tasks/cephfs/test_volumes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qa/tasks/cephfs/test_volumes.py b/qa/tasks/cephfs/test_volumes.py index dcf872378d101..02705a9abc226 100644 --- a/qa/tasks/cephfs/test_volumes.py +++ b/qa/tasks/cephfs/test_volumes.py @@ -1950,8 +1950,8 @@ class TestSubvolumeGroups(TestVolumesHelper): self.assertEqual(ret.strip('\n'), "no subvolumegroup exists") def test_subvolume_group_rm_when_its_not_empty(self): - group = self._generate_random_group_name() - subvolume = self._generate_random_subvolume_name() + group = self._gen_subvol_grp_name() + subvolume = self._gen_subvol_name() # create subvolumegroup self._fs_cmd("subvolumegroup", "create", self.volname, group) -- 2.39.5