Skip to content

Commit a375321

Browse files
committed
Updating copy
1 parent 42b0c4c commit a375321

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

render_machine/code_renderer.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ def run(self):
5858
)
5959
previous_state = deepcopy(self.render_context.state)
6060
self.render_context.script_execution_history.should_update_script_outputs = False
61-
# Reset error message at start of each iteration to prevent stale data
6261

6362
outcome, previous_action_payload = self.action_map[self.render_context.state].execute(
6463
self.render_context, previous_action_payload

render_machine/render_context.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -436,8 +436,7 @@ def start_fixing_conformance_tests(self):
436436
self.conformance_tests_running_context.conformance_tests_render_attempts
437437
>= MAX_CONFORMANCE_TEST_RERENDER_ATTEMPTS
438438
):
439-
# TODO: Change the below error message
440-
error_msg = f"We've already tried to fix the issue by recreating the conformance tests but tests still fail. Please fix the issues manually. FRID: {self.frid_context.frid}, Render ID: {self.run_state.render_id}"
439+
error_msg = f"The renderer was unable to produce an implementation that passes conformance tests for functionality '{self.frid_context.frid}' after many attempts. Please review and rewrite the specification. (Render ID: {self.run_state.render_id})"
441440
self.dispatch_error(error_msg)
442441
else:
443442
self.conformance_tests_running_context.regenerating_conformance_tests = True

0 commit comments

Comments
 (0)