fix: ensure HTTP request method in uppper case

This commit is contained in:
debugtalk
2022-12-23 14:04:22 +08:00
parent eeae8b2961
commit a55a2ff730
2 changed files with 2 additions and 2 deletions

View File

@@ -559,7 +559,7 @@ func (r *SessionRunner) Start(givenVars map[string]interface{}) error {
// check if failfast
if r.caseRunner.hrpRunner.failfast {
return errors.Wrap(err, "abort running due to failfast setting")
return errors.New("abort running due to failfast setting")
}
}