convertExtract deals with extract expr including hyphen
(extract map[string]string)
| 355 | |
| 356 | // convertExtract deals with extract expr including hyphen |
| 357 | func convertExtract(extract map[string]string) { |
| 358 | for key, value := range extract { |
| 359 | extract[key] = convertJmespathExpr(value) |
| 360 | } |
| 361 | } |
| 362 | |
| 363 | func convertCompatMobileStep(mobileStep *MobileStep) { |
| 364 | if mobileStep == nil { |
no test coverage detected