provider/aws: fix capitalization in acctest names

This commit is contained in:
Paul Hinze 2015-12-08 17:48:57 -06:00
parent 6e45319102
commit baeb790ed9
5 changed files with 6 additions and 6 deletions

View File

@ -11,7 +11,7 @@ import (
"github.com/hashicorp/terraform/terraform" "github.com/hashicorp/terraform/terraform"
) )
func TestAccAwsLBCookieStickinessPolicy_basic(t *testing.T) { func TestAccAWSLBCookieStickinessPolicy_basic(t *testing.T) {
resource.Test(t, resource.TestCase{ resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) }, PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders, Providers: testAccProviders,

View File

@ -11,7 +11,7 @@ import (
// These tests assume the existence of predefined Opsworks IAM roles named `aws-opsworks-ec2-role` // These tests assume the existence of predefined Opsworks IAM roles named `aws-opsworks-ec2-role`
// and `aws-opsworks-service-role`. // and `aws-opsworks-service-role`.
func TestAccAwsOpsworksCustomLayer(t *testing.T) { func TestAccAWSOpsworksCustomLayer(t *testing.T) {
resource.Test(t, resource.TestCase{ resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) }, PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders, Providers: testAccProviders,

View File

@ -123,7 +123,7 @@ resource "aws_opsworks_stack" "tf-acc" {
} }
` `
func TestAccAwsOpsworksStackNoVpc(t *testing.T) { func TestAccAWSOpsworksStackNoVpc(t *testing.T) {
resource.Test(t, resource.TestCase{ resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) }, PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders, Providers: testAccProviders,
@ -200,7 +200,7 @@ resource "aws_opsworks_stack" "tf-acc" {
} }
` `
func TestAccAwsOpsworksStackVpc(t *testing.T) { func TestAccAWSOpsworksStackVpc(t *testing.T) {
resource.Test(t, resource.TestCase{ resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) }, PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders, Providers: testAccProviders,

View File

@ -11,7 +11,7 @@ import (
"github.com/hashicorp/terraform/terraform" "github.com/hashicorp/terraform/terraform"
) )
func TestAccAwsVpnConnection_basic(t *testing.T) { func TestAccAWSVpnConnection_basic(t *testing.T) {
resource.Test(t, resource.TestCase{ resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) }, PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders, Providers: testAccProviders,

View File

@ -11,7 +11,7 @@ import (
"github.com/hashicorp/terraform/terraform" "github.com/hashicorp/terraform/terraform"
) )
func TestAccAwsVpnConnectionRoute_basic(t *testing.T) { func TestAccAWSVpnConnectionRoute_basic(t *testing.T) {
resource.Test(t, resource.TestCase{ resource.Test(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) }, PreCheck: func() { testAccPreCheck(t) },
Providers: testAccProviders, Providers: testAccProviders,