Fix pep 8 in test_mixin file
Change-Id: I5afb2fd9fd722b4cef6d1d099574f13c63215252
This commit is contained in:
Tatyana Leontovich 2013-11-01 18:21:32 +02:00 committed by Gerrit Code Review
parent c39f80fbd3
commit d1562fab6e
1 changed files with 4 additions and 3 deletions

View File

@ -128,9 +128,10 @@ class FuelTestAssertMixin(object):
return
if failed_step:
failed_step_msg = ('Step %s failed: ' % str(failed_step))
self.fail(''.join(failed_step_msg +
'Actual value - {actual_content}'.format(
actual_content=act_content), '\n', msg))
self.fail(
''.join(
failed_step_msg + 'Actual value - {actual_content}'.format(
actual_content=act_content), '\n', msg))
def verify_elements_list(self, elements, attrs, msg='', failed_step=''):
"""