Skip to content

Commit

Permalink
Fix a wrong capitalization in test
Browse files Browse the repository at this point in the history
  • Loading branch information
mumoshu committed Dec 7, 2018
1 parent f0d0fcc commit d59f3df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/testutils/mock_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (

// MockProvider stores the mocked APIs
type MockProvider struct {
cfnRoleArn string
cfnRoleARN string

cfn *mocks.CloudFormationAPI
eks *mocks.EKSAPI
Expand Down Expand Up @@ -42,7 +42,7 @@ var ProviderConfig = &api.ProviderConfig{
func (m MockProvider) CloudFormation() cloudformationiface.CloudFormationAPI { return m.cfn }

// CloudFormationRoleARN returns, if any, a service role used by CloudFormation to call AWS API on your behalf
func (m MockProvider) CloudFormationRoleARN() string { return m.cfnRoleArn }
func (m MockProvider) CloudFormationRoleARN() string { return m.cfnRoleARN }

// MockCloudFormation returns a mocked CloudFormation API
func (m MockProvider) MockCloudFormation() *mocks.CloudFormationAPI {
Expand Down

0 comments on commit d59f3df

Please sign in to comment.