MockAWSCloud: Use new route53 test interface

This commit is contained in:
Justin Santa Barbara 2016-12-11 16:46:20 -05:00
parent 718ada42be
commit 4c02a28866
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ func (c *MockCloud) DNS() (dnsprovider.Interface, error) {
if c.MockRoute53 == nil {
return nil, fmt.Errorf("MockRoute53 not set")
}
return dnsproviderroute53.NewInterfaceWithStub(c.MockRoute53), nil
return dnsproviderroute53.New(c.MockRoute53), nil
}
func (c *MockAWSCloud) Region() string {