Skip to content

Commit f2f45dd

Browse files
committed
Fixed an issue with conflict count tracking
1 parent 4ce63c5 commit f2f45dd

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

render_machine/actions/fix_conformance_test.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,10 @@ def execute(self, render_context: RenderContext, previous_action_payload: Any |
116116

117117
if issue_reason_code == self.ISSUE_REASON_CODE_CONFLICTING_REQUIREMENTS:
118118
render_context.conformance_tests_running_context.conflicting_requirement_count += 1
119+
render_context.conformance_tests_running_context.conflicting_module_name = current_testing_module_name
120+
render_context.conformance_tests_running_context.conflicting_frid = current_testing_frid
119121
console.info(
120-
f"Conflicting requirements detected. Conflicting requirement count: {render_context.conformance_tests_running_context.conflicting_requirement_count}"
122+
f"Potential conflicting functionalities detected while fixing conformance tests for functionality {current_testing_frid} in module {current_testing_module_name}."
121123
)
122124

123125
if (

0 commit comments

Comments
 (0)