mirror of https://github.com/databricks/cli.git
fmt and fix test
This commit is contained in:
parent
266c26ce09
commit
a9b8575bc3
|
@ -76,6 +76,7 @@ func SupportedResources() map[string]ResourceDescription {
|
||||||
"registered_models": {SingularName: "registered_model"},
|
"registered_models": {SingularName: "registered_model"},
|
||||||
"quality_monitors": {SingularName: "quality_monitor"},
|
"quality_monitors": {SingularName: "quality_monitor"},
|
||||||
"schemas": {SingularName: "schema"},
|
"schemas": {SingularName: "schema"},
|
||||||
|
"volumes": {SingularName: "volume"},
|
||||||
"clusters": {SingularName: "cluster"},
|
"clusters": {SingularName: "cluster"},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -249,8 +249,8 @@ func TestAccUploadArtifactFileToInvalidVolume(t *testing.T) {
|
||||||
dir := t.TempDir()
|
dir := t.TempDir()
|
||||||
|
|
||||||
b := &bundle.Bundle{
|
b := &bundle.Bundle{
|
||||||
BundleRootPath: dir,
|
BundleRootPath: dir,
|
||||||
SyncRootPath: dir,
|
SyncRootPath: dir,
|
||||||
Config: config.Root{
|
Config: config.Root{
|
||||||
Bundle: config.Bundle{
|
Bundle: config.Bundle{
|
||||||
Target: "whatever",
|
Target: "whatever",
|
||||||
|
@ -282,8 +282,8 @@ func TestAccUploadArtifactFileToInvalidVolume(t *testing.T) {
|
||||||
dir := t.TempDir()
|
dir := t.TempDir()
|
||||||
|
|
||||||
b := &bundle.Bundle{
|
b := &bundle.Bundle{
|
||||||
BundleRootPath: dir,
|
BundleRootPath: dir,
|
||||||
SyncRootPath: dir,
|
SyncRootPath: dir,
|
||||||
Config: config.Root{
|
Config: config.Root{
|
||||||
Bundle: config.Bundle{
|
Bundle: config.Bundle{
|
||||||
Target: "whatever",
|
Target: "whatever",
|
||||||
|
|
Loading…
Reference in New Issue