]> git.ipfire.org Git - thirdparty/libcgroup.git/commitdiff
ftests/045: Fix quote warning
authorKamalesh Babulal <kamalesh.babulal@oracle.com>
Sun, 21 Jul 2024 10:35:36 +0000 (16:05 +0530)
committerTom Hromatka <tom.hromatka@oracle.com>
Tue, 20 Aug 2024 20:42:50 +0000 (14:42 -0600)
Fix "Q000 Double quotes found but single quotes preferred" warning.

Signed-off-by: Kamalesh Babulal <kamalesh.babulal@oracle.com>
Signed-off-by: Tom Hromatka <tom.hromatka@oracle.com>
tests/ftests/045-pybindings-list_mount_points.py

index f8a8b9ebe24afa891fa3190d5d9a00920df07e0e..b34c4e009b82f1924f5f5fc7dca537b53cfd73ea 100755 (executable)
@@ -39,7 +39,7 @@ def test(config):
     mount_points_v2 = Cgroup.mount_points(Version.CGROUP_V2)
     if not mount_points_v1 and not mount_points_v2:
         result = consts.TEST_FAILED
-        cause = ("No cgroup mount point found")
+        cause = ('No cgroup mount point found')
 
     return result, cause