Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
nkvuong committed Oct 30, 2024
1 parent 35b85eb commit 9c7ad60
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/acceptance/app_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ var (
path = "/Shared/%s/xx_{var.RANDOM}"
}
resource "databricks_app" "this" {
name = "my-custom-app"
name = "{var.RANDOM}"
description = "%s"
source_code_path = databricks_workspace_file.this.workspace_path
mode = "SNAPSHOT"
Expand Down Expand Up @@ -56,8 +56,8 @@ func TestAccAppUpdate(t *testing.T) {
skipf(t)("not available on GCP")
}
WorkspaceLevel(t, Step{
Template: fmt.Sprintf(budgetTemplate, "app", "My app"),
Template: fmt.Sprintf(appTemplate, "app", "My app"),
}, Step{
Template: fmt.Sprintf(budgetTemplate, "app", "My new app"),
Template: fmt.Sprintf(appTemplate, "app", "My new app"),
})
}

0 comments on commit 9c7ad60

Please sign in to comment.