Browse Source

Merge branch 'beach-team'

Co-authored-by: Nick Ruffles <nick.ruffles@engineerbetter.com>
Marcus Dantas 3 years ago
parent
commit
55172af8de
1 changed files with 3 additions and 3 deletions
  1. 3 3
      pkg/provider/aws/parameterstore/parameterstore_test.go

+ 3 - 3
pkg/provider/aws/parameterstore/parameterstore_test.go

@@ -36,7 +36,7 @@ type parameterstoreTestCase struct {
 	expectError    string
 	expectedSecret string
 	expectedData   map[string]string
-	setApiInput    *ssm.PutParameterInput
+	setAPIInput    *ssm.PutParameterInput
 }
 
 func makeValidParameterStoreTestCase() *parameterstoreTestCase {
@@ -86,8 +86,8 @@ func TestPushSecret(t *testing.T) {
 	pm := makeValidParameterStoreTestCase()
 
 	setSimpleSecret := func(pstc *parameterstoreTestCase) {
-		pm.setApiInput.SetName("nameHere")
-		pm.setApiInput.SetValue("valueHere")
+		pm.setAPIInput.SetName("nameHere")
+		pm.setAPIInput.SetValue("valueHere")
 	}
 
 	successCases := []*parameterstoreTestCase{