provider/aws: Remove the description test from the Attributes tests as this now has a default value
This commit is contained in:
parent
c193cbdc03
commit
fd8ab99ffe
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue