Skip to content

Commit

Permalink
fix: multiline 'name' string corrupted
Browse files Browse the repository at this point in the history
When multiline was added in order to satisfy PEP-8 style I forgot to use correctly the strings
  • Loading branch information
Luis Gonzalez committed Aug 20, 2021
1 parent 0eeed7b commit bc41293
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deps/wazuh_testing/wazuh_testing/qa_ctl/run_tests/Pytest.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,12 +128,12 @@ def run(self, ansible_inventory_path):
'content': "{{test_output.stdout}}"}}

fetch_plain_report = {'name': f"Move {plain_report_file_name} from "
"{plain_report_file_path} to {tests_result_path}",
f"{plain_report_file_path} to {self.tests_result_path}",
'fetch': {'src': plain_report_file_path,
'dest': self.tests_result_path, 'flat': 'yes'}}

fetch_html_report = {'name': f"Move {html_report_file_name} from {html_report_file_path}"
" to {self.tests_result_path}",
f" to {self.tests_result_path}",
'fetch': {'src': html_report_file_path,
'dest': self.tests_result_path, 'flat': 'yes'}}

Expand Down

0 comments on commit bc41293

Please sign in to comment.