Skip to content

Commit

Permalink
Update test name to trigger acceptance CI runs
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobbednarz committed Jul 15, 2019
1 parent 73f7cd8 commit 44b372c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions cloudflare/resource_cloudflare_filter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/hashicorp/terraform/helper/resource"
)

func TestFilterSimple(t *testing.T) {
func TestAccFilterSimple(t *testing.T) {
rnd := generateRandomResourceName()
name := "cloudflare_filter." + rnd
zone := os.Getenv("CLOUDFLARE_DOMAIN")
Expand Down Expand Up @@ -56,7 +56,7 @@ EOF
}
`

func TestFilterWhitespace(t *testing.T) {
func TestAccFilterWhitespace(t *testing.T) {
rnd := generateRandomResourceName()
zone := os.Getenv("CLOUDFLARE_DOMAIN")

Expand Down
2 changes: 1 addition & 1 deletion cloudflare/resource_cloudflare_firewall_rule_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/hashicorp/terraform/helper/resource"
)

func TestFirewallRuleSimple(t *testing.T) {
func TestAccFirewallRuleSimple(t *testing.T) {
rnd := generateRandomResourceName()
name := "cloudflare_firewall_rule." + rnd
zone := os.Getenv("CLOUDFLARE_DOMAIN")
Expand Down
4 changes: 2 additions & 2 deletions cloudflare/resource_cloudflare_zone_lockdown_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/hashicorp/terraform/helper/resource"
)

func TestCloudflareZoneLockdown(t *testing.T) {
func TestAccCloudflareZoneLockdown(t *testing.T) {
zone := os.Getenv("CLOUDFLARE_DOMAIN")
rnd := generateRandomResourceName()
name := "cloudflare_zone_lockdown." + rnd
Expand All @@ -33,7 +33,7 @@ func TestCloudflareZoneLockdown(t *testing.T) {
})
}

func TestCloudflareZoneLockdown_Import(t *testing.T) {
func TestAccCloudflareZoneLockdown_Import(t *testing.T) {
zone := os.Getenv("CLOUDFLARE_DOMAIN")
rnd := generateRandomResourceName()
name := "cloudflare_zone_lockdown." + rnd
Expand Down
8 changes: 4 additions & 4 deletions cloudflare/resource_cloudflare_zone_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/hashicorp/terraform/helper/resource"
)

func TestZone(t *testing.T) {
func TestAccCloudflareZone(t *testing.T) {
name := "cloudflare_zone.test"

resource.Test(t, resource.TestCase{
Expand Down Expand Up @@ -58,7 +58,7 @@ func TestZone(t *testing.T) {
})
}

func TestZoneWithUnicodeIsStoredAsUnicode(t *testing.T) {
func TestAccCloudflareZoneWithUnicodeIsStoredAsUnicode(t *testing.T) {
name := "cloudflare_zone.tf-acc-unicode-test-1"

resource.Test(t, resource.TestCase{
Expand All @@ -79,7 +79,7 @@ func TestZoneWithUnicodeIsStoredAsUnicode(t *testing.T) {
})
}

func TestZoneWithoutUnicodeIsStoredAsUnicode(t *testing.T) {
func TestAccCloudflareZoneWithoutUnicodeIsStoredAsUnicode(t *testing.T) {
name := "cloudflare_zone.tf-acc-unicode-test-2"

resource.Test(t, resource.TestCase{
Expand All @@ -100,7 +100,7 @@ func TestZoneWithoutUnicodeIsStoredAsUnicode(t *testing.T) {
})
}

func TestZonePerformsUnicodeComparison(t *testing.T) {
func TestAccCloudflareZonePerformsUnicodeComparison(t *testing.T) {
name := "cloudflare_zone.tf-acc-unicode-test-3"

resource.Test(t, resource.TestCase{
Expand Down

0 comments on commit 44b372c

Please sign in to comment.