Skip to content

Commit

Permalink
Fix incorrect resource verification func
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhung committed Mar 4, 2024
1 parent d7c6dd0 commit 76f1770
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/project/resource_project_group_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func TestAccProjectGroup(t *testing.T) {
resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
CheckDestroy: verifyDeleted(resourceName, func(id string, request *resty.Request) (*resty.Response, error) {
return verifyProjectUser(group, projectKey, request)
return verifyProjectGroup(group, projectKey, request)
}),
ProviderFactories: testAccProviders(),
ExternalProviders: map[string]resource.ExternalProvider{
Expand Down

0 comments on commit 76f1770

Please sign in to comment.