From 12d2ae143858e1baf2245b8c80ad43d9cce317f8 Mon Sep 17 00:00:00 2001 From: clint shryock Date: Thu, 12 Nov 2015 10:45:49 -0600 Subject: [PATCH] patch TestExpandElasticacheParameters test --- builtin/providers/aws/structure_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/builtin/providers/aws/structure_test.go b/builtin/providers/aws/structure_test.go index 1aef08134..7447801ee 100644 --- a/builtin/providers/aws/structure_test.go +++ b/builtin/providers/aws/structure_test.go @@ -397,8 +397,8 @@ func TestExpandParameters(t *testing.T) { func TestExpandElasticacheParameters(t *testing.T) { expanded := []interface{}{ map[string]interface{}{ - "name": "character_set_client", - "value": "utf8", + "name": "activerehashing", + "value": "yes", "apply_method": "immediate", }, } @@ -407,7 +407,7 @@ func TestExpandElasticacheParameters(t *testing.T) { t.Fatalf("bad: %#v", err) } - expected := &elasticache.Parameter{ + expected := &elasticache.ParameterNameValue{ ParameterName: aws.String("activerehashing"), ParameterValue: aws.String("yes"), }