bump version to v4.2.0

This commit is contained in:
debugtalk
2022-07-26 10:20:20 +08:00
parent ee601d7308
commit e3f114df6d
23 changed files with 48 additions and 46 deletions

View File

@@ -81,15 +81,15 @@ type SessionRunner struct {
```go
func (r *SessionRunner) Start() error {
...
// run step in sequential order
...
// run step in sequential order
for _, step := range r.testCase.TestSteps {
_, err := step.Run(r)
if err != nil && r.hrpRunner.failfast {
return errors.Wrap(err, "abort running due to failfast setting")
}
}
...
...
}
```