Commit c3954882 by Alexander Popov

Fix the pylint R1714 issues

No functional changes
parent 23538f7a
......@@ -66,7 +66,7 @@ class OptCheck:
'invalid expected value "{}" for "{}" check (1)'.format(expected, name)
val_len = len(expected.split())
if val_len == 3:
assert(expected == 'is not set' or expected == 'is not off'), \
assert(expected in ('is not set', 'is not off')), \
'invalid expected value "{}" for "{}" check (2)'.format(expected, name)
elif val_len == 2:
assert(expected == 'is present'), \
......@@ -266,7 +266,7 @@ class AND(ComplexOptCheck):
self.result = 'FAIL: {} is not "{}"'.format(opt.name, opt.expected)
elif opt.result == 'FAIL: is not present':
self.result = 'FAIL: {} is not present'.format(opt.name)
elif opt.result == 'FAIL: is off' or opt.result == 'FAIL: is off, "0"':
elif opt.result in ('FAIL: is off', 'FAIL: is off, "0"'):
self.result = 'FAIL: {} is off'.format(opt.name)
elif opt.result == 'FAIL: is off, not found':
self.result = 'FAIL: {} is off, not found'.format(opt.name)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment