From fd8ab99ffe366348fb9f5762722f0f75e85ee961 Mon Sep 17 00:00:00 2001 From: stack72 Date: Mon, 23 May 2016 13:48:23 +0100 Subject: [PATCH] provider/aws: Remove the description test from the Attributes tests as this now has a default value --- builtin/providers/aws/resource_aws_db_parameter_group_test.go | 4 ---- .../aws/resource_aws_elasticache_parameter_group_test.go | 4 ---- 2 files changed, 8 deletions(-) diff --git a/builtin/providers/aws/resource_aws_db_parameter_group_test.go b/builtin/providers/aws/resource_aws_db_parameter_group_test.go index b172834f8..f620152cd 100644 --- a/builtin/providers/aws/resource_aws_db_parameter_group_test.go +++ b/builtin/providers/aws/resource_aws_db_parameter_group_test.go @@ -199,10 +199,6 @@ func testAccCheckAWSDBParameterGroupAttributes(v *rds.DBParameterGroup, name str return fmt.Errorf("bad family: %#v", v.DBParameterGroupFamily) } - if *v.Description != "Test parameter group for terraform" { - return fmt.Errorf("bad description: %#v", v.Description) - } - return nil } } diff --git a/builtin/providers/aws/resource_aws_elasticache_parameter_group_test.go b/builtin/providers/aws/resource_aws_elasticache_parameter_group_test.go index 18e2d6714..2bc81c385 100644 --- a/builtin/providers/aws/resource_aws_elasticache_parameter_group_test.go +++ b/builtin/providers/aws/resource_aws_elasticache_parameter_group_test.go @@ -129,10 +129,6 @@ func testAccCheckAWSElasticacheParameterGroupAttributes(v *elasticache.CachePara return fmt.Errorf("bad family: %#v", v.CacheParameterGroupFamily) } - if *v.Description != "Test parameter group for terraform" { - return fmt.Errorf("bad description: %#v", v.Description) - } - return nil } }