Skip to content

Commit 6112713

Browse files
[Fix] Change repo used in test (#4122)
## Changes Change repo used in test ## Tests <!-- How is this tested? Please see the checklist below and also describe any other relevant tests --> - [X] `make test` run locally - [ ] relevant change in `docs/` folder - [X] covered with integration tests in `internal/acceptance` - [X] relevant acceptance tests are passing - [X] using Go SDK
1 parent 2dfee52 commit 6112713

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

internal/acceptance/permissions_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -508,8 +508,8 @@ func TestAccPermissions_Repo_Id(t *testing.T) {
508508
loadDebugEnvIfRunsFromIDE(t, "workspace")
509509
template := `
510510
resource "databricks_repo" "this" {
511-
url = "https://github.com/databrickslabs/tempo.git"
512-
path = "/Repos/terraform-tests/tempo-{var.STICKY_RANDOM}"
511+
url = "https://github.com/databricks/databricks-sdk-go.git"
512+
path = "/Repos/terraform-tests/databricks-sdk-go-{var.STICKY_RANDOM}"
513513
}
514514
`
515515
WorkspaceLevel(t, Step{
@@ -542,8 +542,8 @@ func TestAccPermissions_Repo_Path(t *testing.T) {
542542
loadDebugEnvIfRunsFromIDE(t, "workspace")
543543
template := `
544544
resource "databricks_repo" "this" {
545-
url = "https://github.com/databrickslabs/tempo.git"
546-
path = "/Repos/terraform-tests/tempo-{var.STICKY_RANDOM}"
545+
url = "https://github.com/databricks/databricks-sdk-go.git"
546+
path = "/Repos/terraform-tests/databricks-sdk-go-{var.STICKY_RANDOM}"
547547
}
548548
`
549549
WorkspaceLevel(t, Step{

0 commit comments

Comments
 (0)