From 68fe1e19374078f463b558e27a0c77455570c004 Mon Sep 17 00:00:00 2001 From: Kamalesh Babulal Date: Sat, 10 Aug 2024 11:53:31 +0530 Subject: [PATCH] ftests/092: Fix quote warning Fix "Q000 Double quotes found but single quotes preferred" warning. Signed-off-by: Kamalesh Babulal Signed-off-by: Tom Hromatka --- tests/ftests/092-sudo-cgroup_attach_thread_tid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ftests/092-sudo-cgroup_attach_thread_tid.py b/tests/ftests/092-sudo-cgroup_attach_thread_tid.py index ee1ee845..1ddebb16 100755 --- a/tests/ftests/092-sudo-cgroup_attach_thread_tid.py +++ b/tests/ftests/092-sudo-cgroup_attach_thread_tid.py @@ -50,7 +50,7 @@ def setup(config): def read_cgroup_tasks_file(config, CONTROLLER, CGNAME): mnt_path = CgroupCli.get_controller_mount_point(CONTROLLER) - path = os.path.join(mnt_path, CGNAME, "tasks") + path = os.path.join(mnt_path, CGNAME, 'tasks') cgrp_pids = [line.strip() for line in open(path, 'r')] return cgrp_pids -- 2.47.3