From baeb790ed9f53e9b12b2e7029c727e75267dfd24 Mon Sep 17 00:00:00 2001 From: Paul Hinze Date: Tue, 8 Dec 2015 17:48:57 -0600 Subject: [PATCH] provider/aws: fix capitalization in acctest names --- .../aws/resource_aws_lb_cookie_stickiness_policy_test.go | 2 +- .../providers/aws/resource_aws_opsworks_custom_layer_test.go | 2 +- builtin/providers/aws/resource_aws_opsworks_stack_test.go | 4 ++-- builtin/providers/aws/resource_aws_vpn_connection_test.go | 2 +- builtin/providers/aws/resource_vpn_connection_route_test.go | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/builtin/providers/aws/resource_aws_lb_cookie_stickiness_policy_test.go b/builtin/providers/aws/resource_aws_lb_cookie_stickiness_policy_test.go index 765d2ffcd4..7417f01217 100644 --- a/builtin/providers/aws/resource_aws_lb_cookie_stickiness_policy_test.go +++ b/builtin/providers/aws/resource_aws_lb_cookie_stickiness_policy_test.go @@ -11,7 +11,7 @@ import ( "github.com/hashicorp/terraform/terraform" ) -func TestAccAwsLBCookieStickinessPolicy_basic(t *testing.T) { +func TestAccAWSLBCookieStickinessPolicy_basic(t *testing.T) { resource.Test(t, resource.TestCase{ PreCheck: func() { testAccPreCheck(t) }, Providers: testAccProviders, diff --git a/builtin/providers/aws/resource_aws_opsworks_custom_layer_test.go b/builtin/providers/aws/resource_aws_opsworks_custom_layer_test.go index a39b5dbdba..477bd2b866 100644 --- a/builtin/providers/aws/resource_aws_opsworks_custom_layer_test.go +++ b/builtin/providers/aws/resource_aws_opsworks_custom_layer_test.go @@ -11,7 +11,7 @@ import ( // These tests assume the existence of predefined Opsworks IAM roles named `aws-opsworks-ec2-role` // and `aws-opsworks-service-role`. -func TestAccAwsOpsworksCustomLayer(t *testing.T) { +func TestAccAWSOpsworksCustomLayer(t *testing.T) { resource.Test(t, resource.TestCase{ PreCheck: func() { testAccPreCheck(t) }, Providers: testAccProviders, diff --git a/builtin/providers/aws/resource_aws_opsworks_stack_test.go b/builtin/providers/aws/resource_aws_opsworks_stack_test.go index 63a27578c6..ab23dc879c 100644 --- a/builtin/providers/aws/resource_aws_opsworks_stack_test.go +++ b/builtin/providers/aws/resource_aws_opsworks_stack_test.go @@ -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{ PreCheck: func() { testAccPreCheck(t) }, 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{ PreCheck: func() { testAccPreCheck(t) }, Providers: testAccProviders, diff --git a/builtin/providers/aws/resource_aws_vpn_connection_test.go b/builtin/providers/aws/resource_aws_vpn_connection_test.go index 137694a610..123cb07e6b 100644 --- a/builtin/providers/aws/resource_aws_vpn_connection_test.go +++ b/builtin/providers/aws/resource_aws_vpn_connection_test.go @@ -11,7 +11,7 @@ import ( "github.com/hashicorp/terraform/terraform" ) -func TestAccAwsVpnConnection_basic(t *testing.T) { +func TestAccAWSVpnConnection_basic(t *testing.T) { resource.Test(t, resource.TestCase{ PreCheck: func() { testAccPreCheck(t) }, Providers: testAccProviders, diff --git a/builtin/providers/aws/resource_vpn_connection_route_test.go b/builtin/providers/aws/resource_vpn_connection_route_test.go index b80feaae66..dbe91649e5 100644 --- a/builtin/providers/aws/resource_vpn_connection_route_test.go +++ b/builtin/providers/aws/resource_vpn_connection_route_test.go @@ -11,7 +11,7 @@ import ( "github.com/hashicorp/terraform/terraform" ) -func TestAccAwsVpnConnectionRoute_basic(t *testing.T) { +func TestAccAWSVpnConnectionRoute_basic(t *testing.T) { resource.Test(t, resource.TestCase{ PreCheck: func() { testAccPreCheck(t) }, Providers: testAccProviders,