Skip to content

Commit

Permalink
Use random catalog name in SQL table integration tests (#2473)
Browse files Browse the repository at this point in the history
The fixed value prevented concurrent integration test runs.
  • Loading branch information
pietern authored and nkvuong committed Jul 26, 2023
1 parent d41bf7a commit c2e9ba1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/acceptance/sql_table_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ func TestUcAccResourceSqlTable_Managed(t *testing.T) {
unityWorkspaceLevel(t, step{
Template: `
resource "databricks_schema" "this" {
name = "foom"
name = "{var.STICKY_RANDOM}"
catalog_name = "main"
}
Expand All @@ -35,7 +35,7 @@ func TestUcAccResourceSqlTable_Managed(t *testing.T) {
}, step{
Template: `
resource "databricks_schema" "this" {
name = "foom"
name = "{var.STICKY_RANDOM}"
catalog_name = "main"
}
Expand Down Expand Up @@ -82,7 +82,7 @@ func TestUcAccResourceSqlTable_External(t *testing.T) {
}
resource "databricks_schema" "this" {
name = "fooe"
name = "{var.STICKY_RANDOM}"
catalog_name = "main"
}
Expand Down

0 comments on commit c2e9ba1

Please sign in to comment.