We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffd12b2 commit 2477a07Copy full SHA for 2477a07
golden/dag.go
@@ -142,7 +142,7 @@ func dagToMermaid(cases []DagTestCase) string {
142
sb.WriteString("graph TD\n")
143
for _, c := range cases {
144
for _, need := range c.Needs {
145
- sb.WriteString(fmt.Sprintf(" %s --> %s\n", need, c.Name))
+ fmt.Fprintf(sb, " %s --> %s\n", need, c.Name)
146
}
147
148
return sb.String()
0 commit comments