]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
qa/cephfs: minor improvement for a helper method
authorRishabh Dave <ridave@redhat.com>
Thu, 3 Apr 2025 19:29:27 +0000 (00:59 +0530)
committerRishabh Dave <ridave@redhat.com>
Wed, 14 May 2025 17:58:57 +0000 (23:28 +0530)
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 <ridave@redhat.com>
qa/tasks/cephfs/test_volumes.py

index b8622540baf6ad0605626693e4bd3b9dc3a2abe6..cf88d6293acf623ae722990bea7af601cd9f11a3 100644 (file)
@@ -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)