_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 <ridave@redhat.com>
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)