From 40196cf2af182111c9ee9a53d687b6296a2e7bc8 Mon Sep 17 00:00:00 2001 From: Venky Shankar Date: Thu, 11 Sep 2025 03:35:19 +0000 Subject: [PATCH] qa/cephfs: fix test_subvolume_group_charmap_inheritance test Signed-off-by: Venky Shankar (cherry picked from commit fe3d6417bfaef571a9bb4093b5a8dfdb3cc3e59d) --- qa/tasks/cephfs/test_volumes.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qa/tasks/cephfs/test_volumes.py b/qa/tasks/cephfs/test_volumes.py index 90eabdbdeed..65abdd7dc62 100644 --- a/qa/tasks/cephfs/test_volumes.py +++ b/qa/tasks/cephfs/test_volumes.py @@ -1186,15 +1186,15 @@ class TestSubvolumeGroups(TestVolumesHelper): self._fs_cmd("subvolume", "create", self.volname, subvolume, "--group_name", group) # make sure it exists - subvolpath = self._get_subvolume_path(self.volname, subvolume) + subvolpath = self._get_subvolume_path(self.volname, subvolume, group) self.assertNotEqual(subvolpath, None) # check case sensitivity - case_sensitive = self._fs_cmd("subvolume", "charmap", "get", self.volname, subvolume, "casesensitive") + case_sensitive = self._fs_cmd("subvolume", "charmap", "get", self.volname, subvolume, "casesensitive", group) self.assertEqual(case_sensitive.strip(), "0") # check normalization (it's implicitly enabled by --case-insensitive, with default value 'nfd') - normalization = self._fs_cmd("subvolume", "charmap", "get", self.volname, subvolume, "normalization") + normalization = self._fs_cmd("subvolume", "charmap", "get", self.volname, subvolume, "normalization", group) self.assertEqual(normalization.strip(), "nfc") def test_subvolume_group_info(self): -- 2.39.5