Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion github/resource_github_organization_ruleset_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
)

func TestGithubOrganizationRulesets(t *testing.T) {
func TestAccGithubOrganizationRuleset(t *testing.T) {
t.Run("create_branch_ruleset", func(t *testing.T) {
randomID := acctest.RandStringFromCharSet(5, acctest.CharSetAlphaNum)

Expand Down
4 changes: 2 additions & 2 deletions github/resource_github_repository_ruleset_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/hashicorp/terraform-plugin-sdk/v2/terraform"
)

func TestGithubRepositoryRulesets(t *testing.T) {
func TestAccGithubRepositoryRuleset(t *testing.T) {
t.Run("create_branch_ruleset", func(t *testing.T) {
randomID := acctest.RandStringFromCharSet(5, acctest.CharSetAlphaNum)

Expand Down Expand Up @@ -501,7 +501,7 @@ resource "github_repository_ruleset" "test" {
})
}

func TestGithubRepositoryRulesetArchived(t *testing.T) {
func TestAccGithubRepositoryRulesetArchived(t *testing.T) {
randomID := acctest.RandStringFromCharSet(5, acctest.CharSetAlphaNum)

t.Run("skips update and delete on archived repository", func(t *testing.T) {
Expand Down