change: rename step start time field

This commit is contained in:
lilong.129
2023-06-01 21:31:14 +08:00
parent 6e7495d6bb
commit ac2ccc2c79
2 changed files with 2 additions and 2 deletions

View File

@@ -569,7 +569,7 @@ func (r *SessionRunner) Start(givenVars map[string]interface{}) error {
stepStartTime := time.Now().Unix()
stepResult, err = step.Run(r)
stepResult.Name = stepName + loopIndex
stepResult.Time = stepStartTime
stepResult.StartTime = stepStartTime
r.updateSummary(stepResult)
}