mirror of https://github.com/databricks/cli.git
Fixed a typo in TestDeployBundleWithApp test (#2138)
## Changes Fixed a typo in TestDeployBundleWithApp test ## Tests ``` helpers_test.go:148: stderr: Destroy complete! --- PASS: TestDeployBundleWithApp (647.51s) PASS coverage: [no statements] ok github.com/databricks/cli/integration/bundle 647.985s coverage: [no statements] ```
This commit is contained in:
parent
98a1e73a0f
commit
fe31e4d02e
|
@ -27,7 +27,7 @@ func TestDeployBundleWithApp(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
uniqueId := uuid.New().String()
|
uniqueId := uuid.New().String()
|
||||||
appId := "app-%s" + uuid.New().String()[0:8]
|
appId := "app-" + uuid.New().String()[0:8]
|
||||||
nodeTypeId := testutil.GetCloud(t).NodeTypeID()
|
nodeTypeId := testutil.GetCloud(t).NodeTypeID()
|
||||||
instancePoolId := env.Get(ctx, "TEST_INSTANCE_POOL_ID")
|
instancePoolId := env.Get(ctx, "TEST_INSTANCE_POOL_ID")
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue