Fix tests (bd-6ss and sub-issues) (#626)

Test coverage improvements for bd-6ss. Fixing failing test assumption in follow-up commit.
This commit is contained in:
matt wilkie
2025-12-18 19:23:30 -07:00
committed by GitHub
parent 7f9ee3d1c4
commit fb16e504e6
14 changed files with 1656 additions and 10 deletions

View File

@@ -99,7 +99,7 @@ Colors indicate status:
}
// Render ASCII graph
renderGraph(layout, subgraph)
renderGraph(layout)
},
}
@@ -277,7 +277,7 @@ func computeLayout(subgraph *TemplateSubgraph) *GraphLayout {
}
// renderGraph renders the ASCII visualization
func renderGraph(layout *GraphLayout, subgraph *TemplateSubgraph) {
func renderGraph(layout *GraphLayout) {
if len(layout.Nodes) == 0 {
fmt.Println("Empty graph")
return