Skip to content

Commit 4839e7c

Browse files
authored
[Internal] Remove incorrectly working integration test TestAccLibraryUpdateTransitionFromPluginFw (#4487)
## Changes <!-- Summary of your changes that are easy to understand --> As discussed internally ## Tests <!-- How is this tested? Please see the checklist below and also describe any other relevant tests --> - [ ] `make test` run locally - [ ] relevant change in `docs/` folder - [ ] covered with integration tests in `internal/acceptance` - [ ] using Go SDK - [ ] using TF Plugin Framework
1 parent 501e14d commit 4839e7c

File tree

2 files changed

+2
-26
lines changed

2 files changed

+2
-26
lines changed

NEXT_CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,5 @@
2323
* Refactor UC, SQL and SCIM objects into separate files ([#4477](https://github.com/databricks/terraform-provider-databricks/pull/4477)).
2424

2525
### Internal Changes
26+
27+
* Remove incorrectly working integration test `TestAccLibraryUpdateTransitionFromPluginFw` ([#4487](https://github.com/databricks/terraform-provider-databricks/pull/4487)).

internal/providers/pluginfw/products/library/resource_library_acc_test.go

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -185,29 +185,3 @@ func TestAccLibraryUpdateTransitionFromSdkV2(t *testing.T) {
185185
},
186186
)
187187
}
188-
189-
// Testing the transition from plugin framework to sdkv2.
190-
func TestAccLibraryUpdateTransitionFromPluginFw(t *testing.T) {
191-
acceptance.WorkspaceLevel(t,
192-
acceptance.Step{
193-
Template: commonClusterConfig + `resource "databricks_library" "new_library" {
194-
cluster_id = databricks_cluster.this.id
195-
pypi {
196-
repo = "https://pypi.org/simple"
197-
package = "databricks-sdk"
198-
}
199-
}
200-
`,
201-
},
202-
acceptance.Step{
203-
ProtoV6ProviderFactories: sdkV2FallbackFactory,
204-
Template: commonClusterConfig + `resource "databricks_library" "new_library" {
205-
cluster_id = databricks_cluster.this.id
206-
pypi {
207-
package = "networkx"
208-
}
209-
}
210-
`,
211-
},
212-
)
213-
}

0 commit comments

Comments
 (0)