fix: unittest with failfast

This commit is contained in:
debugtalk
2022-04-16 00:36:38 +08:00
parent fe2c2f170e
commit 8ebb3634fb
14 changed files with 154 additions and 147 deletions

View File

@@ -454,7 +454,7 @@ func (p *Parser) ParseVariables(variables map[string]interface{}) (map[string]in
return parsedVariables, nil
}
type variableSet map[string]struct{}
type variableSet map[string]struct{} // TODO
func extractVariables(raw interface{}) variableSet {
rawValue := reflect.ValueOf(raw)