TC #73 — Phase 7 :cost detail 3-level deterministic sort #73
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Scenario
Multiple slots; some with equal cost.
Expected
Sort order: (cost desc, model asc, category asc). Re-running
:cost detailproduces identical row order each time (no shuffle on equal-cost rows because of the model/category tiebreaker).R7 — table.sort is unstable; the 3-key sort makes it deterministic.
Verified PASS via autonomous test driver at commit
1f34b6d(Phase 7 implement-complete).3-level sort (cost desc, model asc, category asc) deterministic across 3 runs on 3 equal-cost rows. Order: a_model/delegate, a_model/main, b_model/main — correct tiebreaker.
Closed by Phase 7 verify.