Phrase errors in Execute the same as in Prepare [#33]

This commit is contained in:
Erin Call
2019-12-24 15:49:47 -08:00
parent d86ac72529
commit cb58b5a021
2 changed files with 2 additions and 2 deletions

View File

@@ -85,7 +85,7 @@ func (p *Plan) Execute() error {
}
if err := step.Execute(p.runCfg); err != nil {
return fmt.Errorf("in execution step %d: %w", i, err)
return fmt.Errorf("while executing %T step: %w", step, err)
}
}