fix: ensure HTTP request method in uppper case

This commit is contained in:
debugtalk
2022-12-23 16:46:39 +08:00
parent 79dc78218d
commit f3cb83910e
2 changed files with 2 additions and 2 deletions
+1 -1
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")
}
}