Skip to content

Commit f666f0e

Browse files
authored
Bug in nightly test definition (#2284)
1 parent eac7007 commit f666f0e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/acceptance/workspace_file_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ func TestAccWorkspaceFile(t *testing.T) {
2121
func TestAccWorkspaceFileBase64(t *testing.T) {
2222
workspaceLevel(t, step{
2323
Template: `resource "databricks_workspace_file" "this2" {
24-
"content_base64": "YWJjCg==",
24+
content_base64 = "YWJjCg=="
2525
path = "/Shared/provider-test/xx2_{var.RANDOM}"
2626
}`,
2727
}, step{
2828
Template: `resource "databricks_workspace_file" "this2" {
29-
"content_base64": "YWJjCg==",
29+
content_base64 = "YWJjCg=="
3030
path = "/Shared/provider-test/xx2_{var.RANDOM}_renamed"
3131
}`,
3232
})

0 commit comments

Comments
 (0)