mirror of https://github.com/databricks/cli.git
This commit is contained in:
parent
e7fd063e8a
commit
5b7974757d
|
@ -305,37 +305,3 @@ func TestValidateSchemaSkippedPropertiesHaveDefaults(t *testing.T) {
|
||||||
err = s.validate()
|
err = s.validate()
|
||||||
assert.NoError(t, err)
|
assert.NoError(t, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
func testSchema() *Schema {
|
|
||||||
return &Schema{
|
|
||||||
Type: "object",
|
|
||||||
Properties: map[string]*Schema{
|
|
||||||
"int_val": {
|
|
||||||
Type: "integer",
|
|
||||||
Default: int64(123),
|
|
||||||
},
|
|
||||||
"string_val": {
|
|
||||||
Type: "string",
|
|
||||||
},
|
|
||||||
"object_val": {
|
|
||||||
Type: "object",
|
|
||||||
Properties: map[string]*Schema{
|
|
||||||
"bar": {
|
|
||||||
Type: "string",
|
|
||||||
Default: "baz",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
AdditionalProperties: &Schema{
|
|
||||||
Type: "object",
|
|
||||||
Properties: map[string]*Schema{
|
|
||||||
"foo": {
|
|
||||||
Type: "string",
|
|
||||||
Default: "zab",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue