Skip to content

Commit

Permalink
[Fix] Change repo used in test (#4122)
Browse files Browse the repository at this point in the history
## 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
  • Loading branch information
hectorcast-db authored Oct 18, 2024
1 parent 2dfee52 commit 6112713
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions internal/acceptance/permissions_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -508,8 +508,8 @@ func TestAccPermissions_Repo_Id(t *testing.T) {
loadDebugEnvIfRunsFromIDE(t, "workspace")
template := `
resource "databricks_repo" "this" {
url = "https://github.com/databrickslabs/tempo.git"
path = "/Repos/terraform-tests/tempo-{var.STICKY_RANDOM}"
url = "https://github.com/databricks/databricks-sdk-go.git"
path = "/Repos/terraform-tests/databricks-sdk-go-{var.STICKY_RANDOM}"
}
`
WorkspaceLevel(t, Step{
Expand Down Expand Up @@ -542,8 +542,8 @@ func TestAccPermissions_Repo_Path(t *testing.T) {
loadDebugEnvIfRunsFromIDE(t, "workspace")
template := `
resource "databricks_repo" "this" {
url = "https://github.com/databrickslabs/tempo.git"
path = "/Repos/terraform-tests/tempo-{var.STICKY_RANDOM}"
url = "https://github.com/databricks/databricks-sdk-go.git"
path = "/Repos/terraform-tests/databricks-sdk-go-{var.STICKY_RANDOM}"
}
`
WorkspaceLevel(t, Step{
Expand Down

0 comments on commit 6112713

Please sign in to comment.