mirror of https://github.com/databricks/cli.git
str bool
This commit is contained in:
parent
3d5c076a4d
commit
be0ad482ff
|
@ -42,14 +42,14 @@ func TestFromTypeBasic(t *testing.T) {
|
|||
},
|
||||
{
|
||||
name: "string",
|
||||
typ: reflect.TypeOf(""),
|
||||
typ: reflect.TypeOf(string("")),
|
||||
expected: Schema{
|
||||
Type: "string",
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "bool",
|
||||
typ: reflect.TypeOf(true),
|
||||
typ: reflect.TypeOf(bool(true)),
|
||||
expected: Schema{
|
||||
Type: "boolean",
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue