]> git.ipfire.org Git - thirdparty/libcgroup.git/commitdiff
ftests/011: Fix quote warnings
authorKamalesh Babulal <kamalesh.babulal@oracle.com>
Sat, 3 Aug 2024 10:56:37 +0000 (16:26 +0530)
committerTom Hromatka <tom.hromatka@oracle.com>
Tue, 20 Aug 2024 20:42:50 +0000 (14:42 -0600)
Fix multiple "Q001 Single quote multiline found but double quotes
preferred" warnings.

Signed-off-by: Kamalesh Babulal <kamalesh.babulal@oracle.com>
Signed-off-by: Tom Hromatka <tom.hromatka@oracle.com>
tests/ftests/011-cgget-r_flag_two_cgroups.py

index e6a02defeb33247f5c159be04f2feccfb256bc6e..fd26d49899e884b1c00c0ab61a9a97e308446a55 100755 (executable)
@@ -21,19 +21,19 @@ SETTING_V1 = 'memory.limit_in_bytes'
 SETTING_V2 = 'memory.max'
 VALUE = '2048000'
 
-EXPECTED_OUT_V1 = '''011cgget1:
+EXPECTED_OUT_V1 = """011cgget1:
 memory.limit_in_bytes: 2048000
 
 011cgget2:
 memory.limit_in_bytes: 2048000
-'''
+"""
 
-EXPECTED_OUT_V2 = '''011cgget1:
+EXPECTED_OUT_V2 = """011cgget1:
 memory.max: 2048000
 
 011cgget2:
 memory.max: 2048000
-'''
+"""
 
 
 def prereqs(config):