Skip to content

Commit

Permalink
address comment
Browse files Browse the repository at this point in the history
  • Loading branch information
mgyucht committed Aug 23, 2024
1 parent d5a5ea5 commit 5bde37f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions catalog/resource_sql_table_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1335,7 +1335,7 @@ func TestResourceSqlTableCreateTable_ExistingSQLWarehouse(t *testing.T) {
}

func TestResourceSqlTableCreateTable_OnlyManagedProperties(t *testing.T) {
_, err := qa.ResourceFixture{
qa.ResourceFixture{
CommandMock: func(commandStr string) common.CommandResults {
return common.CommandResults{
ResultType: "",
Expand Down Expand Up @@ -1388,16 +1388,16 @@ func TestResourceSqlTableCreateTable_OnlyManagedProperties(t *testing.T) {
StorageCredentialName: "somecred",
Comment: "terraform managed",
Properties: map[string]string{
"one": "two",
"three": "four",
"one": "two",
"three": "four",
"delta.enableDeletionVectors": "false",
},
},
},
},
Create: true,
Resource: ResourceSqlTable(),
}.Apply(t)
assert.NoError(t, err)
}.ApplyNoError(t)
}

func TestResourceSqlTable_Diff_ExistingResource(t *testing.T) {
Expand Down

0 comments on commit 5bde37f

Please sign in to comment.