Skip to content

Commit

Permalink
Ignored updated field in remaining dbaas tests (#1791)
Browse files Browse the repository at this point in the history
  • Loading branch information
ezilber-akamai authored Feb 25, 2025
1 parent 4c5a5a7 commit 2049d9b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
14 changes: 8 additions & 6 deletions linode/databasemysqlv2/resource_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,10 @@ func TestAccResource_basic(t *testing.T) {
),
},
{
ResourceName: resName,
ImportState: true,
ImportStateVerify: true,
ResourceName: resName,
ImportState: true,
ImportStateVerify: true,
ImportStateVerifyIgnore: []string{"updated"},
},
},
})
Expand Down Expand Up @@ -257,9 +258,10 @@ func TestAccResource_complex(t *testing.T) {
),
},
{
ResourceName: resName,
ImportState: true,
ImportStateVerify: true,
ResourceName: resName,
ImportState: true,
ImportStateVerify: true,
ImportStateVerifyIgnore: []string{"updated"},
},
},
})
Expand Down
7 changes: 4 additions & 3 deletions linode/databasepostgresqlv2/resource_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,10 @@ func TestAccResource_basic(t *testing.T) {
),
},
{
ResourceName: resName,
ImportState: true,
ImportStateVerify: true,
ResourceName: resName,
ImportState: true,
ImportStateVerify: true,
ImportStateVerifyIgnore: []string{"updated"},
},
},
})
Expand Down

0 comments on commit 2049d9b

Please sign in to comment.