fix(test): resolve ambiguous behave step in combined branch merge

This commit is contained in:
2026-02-21 00:07:50 +00:00
parent 5bdca88eca
commit 2881b0cf7a
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -95,7 +95,7 @@ Feature: Plan Diff and Artifacts Output
Scenario: Merge failure triggers error state
Given a plan in apply processing state
When a merge failure occurs with conflict details
Then the plan should be in errored state
Then the plan should be in an errored processing state
And the plan error message should contain merge conflict info
And the plan metadata should contain merge_conflict details
And the plan metadata should contain sandbox_rollback pending
+1 -1
View File
@@ -460,7 +460,7 @@ def step_metadata_timestamp(context: Context) -> None:
assert "apply_completed_at" in plan.error_details
@then("the plan should be in errored state")
@then("the plan should be in an errored processing state")
def step_plan_errored(context: Context) -> None:
plan = context.lifecycle_service.get_plan(context.plan_id)
assert plan.processing_state == ProcessingState.ERRORED