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:
Andrew Nester 2025-01-14 14:24:22 +01:00 committed by GitHub
parent 98a1e73a0f
commit fe31e4d02e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

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