Skip to content

Commit 4c84e3b

Browse files
committed
Fixed an issue with conflict count tracking
1 parent 942f479 commit 4c84e3b

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
@@ -119,8 +119,10 @@ def execute(self, render_context: RenderContext, previous_action_payload: Any |
119119

120120
if issue_reason_code == self.ISSUE_REASON_CODE_CONFLICTING_REQUIREMENTS:
121121
render_context.conformance_tests_running_context.conflicting_requirement_count += 1
122+
render_context.conformance_tests_running_context.conflicting_module_name = current_testing_module_name
123+
render_context.conformance_tests_running_context.conflicting_frid = current_testing_frid
122124
console.info(
123-
f"Conflicting requirements detected. Conflicting requirement count: {render_context.conformance_tests_running_context.conflicting_requirement_count}"
125+
f"Potential conflicting functionalities detected while fixing conformance tests for functionality {current_testing_frid} in module {current_testing_module_name}."
124126
)
125127

126128
if (

0 commit comments

Comments
 (0)