v1.9.0
This commit is contained in:
@@ -100,7 +100,10 @@ func getErrorsFromJSON(bytes []byte, t *testing.T, cloud string) {
|
||||
}
|
||||
|
||||
name := param["name"].(string)
|
||||
required := param["required"].(bool)
|
||||
required, ok := param["required"].(bool)
|
||||
if !ok {
|
||||
required = false
|
||||
}
|
||||
typ := p.(map[string]interface{})["type"].(string)
|
||||
|
||||
var items string
|
||||
|
||||
Reference in New Issue
Block a user