(out string)
| 203 | } |
| 204 | |
| 205 | func (d *Driver) replaced(out string) string { |
| 206 | replaced := spinnerReplacer.Replace(out) |
| 207 | replaced = strings.NewReplacer(d.replacements...).Replace(replaced) |
| 208 | return replaced |
| 209 | } |
| 210 | |
| 211 | func (d *Driver) recordGolden(out string) { |
| 212 | d.goldenMutex.Lock() |