From: Rishabh Dave Date: Thu, 3 Apr 2025 19:29:27 +0000 (+0530) Subject: qa/cephfs: minor improvement for a helper method X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=94ab44caf5a6c8c5ebf0b7c451f107a1e12bfb44;p=ceph.git qa/cephfs: minor improvement for a helper method Remove extra space from the line that defines the method name and parameters as the extra space between the keyword "def" and method name makes it impossible to find this method through a search. Signed-off-by: Rishabh Dave --- diff --git a/qa/tasks/cephfs/test_volumes.py b/qa/tasks/cephfs/test_volumes.py index b8622540baf..cf88d6293ac 100644 --- a/qa/tasks/cephfs/test_volumes.py +++ b/qa/tasks/cephfs/test_volumes.py @@ -247,7 +247,7 @@ class TestVolumesHelper(CephFSTestCase): # remove the leading '/', and trailing whitespaces return path[1:].rstrip() - def _get_subvolume_info(self, vol_name, subvol_name, group_name=None): + def _get_subvolume_info(self, vol_name, subvol_name, group_name=None): args = ["subvolume", "info", vol_name, subvol_name] if group_name: args.append(group_name)