Fix multiple "Q001 Single quote multiline found but double quotes
preferred" warnings by adjusting two lines into single line.
Signed-off-by: Kamalesh Babulal <kamalesh.babulal@oracle.com>
Signed-off-by: Tom Hromatka <tom.hromatka@oracle.com>
result = consts.TEST_FAILED
cause = (
"#3 Expected 'cgget: error parsing parameter name' to "
- "be in stderr"
+ 'be in stderr'
)
return result, cause
except RunError as re:
if 'cgget: cannot find controller' not in re.stderr:
result = consts.TEST_FAILED
- cause = (
- "#4 Expected 'cgget: cannot find controller' to be in "
- "stderr"
- )
+ cause = "#4 Expected 'cgget: cannot find controller' to be in stderr"
return result, cause
# legacy cgget returns 0 but populates stderr for this case.