Skip to content

Commit

Permalink
Change name of tests to include one underscore
Browse files Browse the repository at this point in the history
  • Loading branch information
jsonroy-fastly committed May 7, 2024
1 parent 42fbe72 commit e071779
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions fastly/resource_fastly_alert_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 TestAccFastlyAlertBasic(t *testing.T) {
func TestAccFastlyAlert_Basic(t *testing.T) {
var service gofastly.ServiceDetail
serviceName := fmt.Sprintf("tf-test-%s", acctest.RandString(10))
domainName := fmt.Sprintf("fastly-test.tf-%s.com", acctest.RandString(10))
Expand Down Expand Up @@ -75,7 +75,7 @@ func TestAccFastlyAlertBasic(t *testing.T) {
})
}

func TestAccFastlyAlertBasicStats(t *testing.T) {
func TestAccFastlyAlert_BasicStats(t *testing.T) {
var service gofastly.ServiceDetail
serviceName := fmt.Sprintf("tf-test-%s", acctest.RandString(10))
domainName := fmt.Sprintf("fastly-test.tf-%s.com", acctest.RandString(10))
Expand Down Expand Up @@ -134,7 +134,7 @@ func TestAccFastlyAlertBasicStats(t *testing.T) {
})
}

func TestAccFastlyAlertBasicStatsAggregate(t *testing.T) {
func TestAccFastlyAlert_BasicStatsAggregate(t *testing.T) {
service := gofastly.ServiceDetail{
Name: gofastly.ToPointer(""),
ServiceID: gofastly.ToPointer(""),
Expand Down Expand Up @@ -193,7 +193,7 @@ func TestAccFastlyAlertBasicStatsAggregate(t *testing.T) {
})
}

func TestAccFastlyAlertBasicStatsAggregatePercent(t *testing.T) {
func TestAccFastlyAlert_BasicStatsAggregatePercent(t *testing.T) {
service := gofastly.ServiceDetail{
Name: gofastly.ToPointer(""),
ServiceID: gofastly.ToPointer(""),
Expand Down

0 comments on commit e071779

Please sign in to comment.