fix: psql test typo
All checks were successful
Notify on new PR / Notify via Google Chat (pull_request) Successful in 1m3s
CI Workflow / Check GoReleaser config (pull_request) Successful in 1m10s
CI Workflow / Prepare GO cache (pull_request) Successful in 2m58s
CI Workflow / CI run build and linting (pull_request) Successful in 9m10s
CI Workflow / Code coverage report (pull_request) Successful in 46s
CI Workflow / CI run tests (pull_request) Successful in 10m54s
CI Workflow / Test readiness for publishing provider (pull_request) Successful in 19m53s
TF Acceptance Tests Workflow / Acceptance Tests (pull_request) Successful in 1h29m7s
All checks were successful
Notify on new PR / Notify via Google Chat (pull_request) Successful in 1m3s
CI Workflow / Check GoReleaser config (pull_request) Successful in 1m10s
CI Workflow / Prepare GO cache (pull_request) Successful in 2m58s
CI Workflow / CI run build and linting (pull_request) Successful in 9m10s
CI Workflow / Code coverage report (pull_request) Successful in 46s
CI Workflow / CI run tests (pull_request) Successful in 10m54s
CI Workflow / Test readiness for publishing provider (pull_request) Successful in 19m53s
TF Acceptance Tests Workflow / Acceptance Tests (pull_request) Successful in 1h29m7s
This commit is contained in:
parent
2e4c6db67b
commit
91d993986e
1 changed files with 2 additions and 2 deletions
|
|
@ -869,7 +869,7 @@ func basicInstanceTestChecks(testItemID string, data resData) resource.TestCheck
|
|||
resource.TestCheckResourceAttrSet(testItemID, "connection_info.write.port"),
|
||||
|
||||
resource.TestCheckResourceAttrSet(testItemID, "flavor_id"),
|
||||
resource.TestCheckResourceAttr(testItemID, "flavor_id", data.FlavorID),
|
||||
resource.TestCheckResourceAttr(testItemID, "flavor_id", *data.FlavorID),
|
||||
|
||||
resource.TestCheckResourceAttrSet(testItemID, "id"),
|
||||
resource.TestCheckResourceAttrSet(testItemID, "instance_id"),
|
||||
|
|
@ -963,7 +963,7 @@ func getDatabaseTestID(name string) func(s *terraform.State) (string, error) {
|
|||
}
|
||||
}
|
||||
|
||||
func getUserTestID(name string) func(s *teraform.State) (string, error) {
|
||||
func getUserTestID(name string) func(s *terraform.State) (string, error) {
|
||||
return func(s *terraform.State) (string, error) {
|
||||
r, ok := s.RootModule().Resources[testutils.ResStr(pfx, "user", name)]
|
||||
if !ok {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue