🚀 fix: fix typo

This commit is contained in:
Joschka Braun
2023-05-08 10:39:54 +02:00
parent 9f24ee9c75
commit fdc8d0414c

View File

@@ -419,7 +419,7 @@ pytest
template=template_was_error_seen_before, template=template_was_error_seen_before,
file_name_s=['was_error_seen_before.json'], file_name_s=['was_error_seen_before.json'],
summarized_error=summarized_error, summarized_error=summarized_error,
previous_errors=f'- "{os.linesep}"\n'.join(self.previous_errors), previous_errors='- "' + f'"{os.linesep}- "'.join(self.previous_errors) + '"',
use_custom_system_message=False, use_custom_system_message=False,
)['was_error_seen_before.json'] )['was_error_seen_before.json']
)['was_error_seen_before'].lower() == 'yes' )['was_error_seen_before'].lower() == 'yes'
@@ -433,7 +433,7 @@ pytest
section_title='Check if solution was tried before', section_title='Check if solution was tried before',
template=template_was_solution_tried_before, template=template_was_solution_tried_before,
file_name_s=['will_lead_to_different_actions.json'], file_name_s=['will_lead_to_different_actions.json'],
tried_solutions=f'- "{os.linesep}"\n'.join(self.previous_solutions), tried_solutions='- "' + f'"{os.linesep}- "'.join(self.previous_solutions) + '"',
suggested_solution=_suggested_solution, suggested_solution=_suggested_solution,
use_custom_system_message=False, use_custom_system_message=False,
)['will_lead_to_different_actions.json'] )['will_lead_to_different_actions.json']