This commit is contained in:
2024-11-12 12:51:21 +03:00
parent f1e0f7abb6
commit 80491ed643
226 changed files with 3033 additions and 2633 deletions

View File

@@ -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