Skip to content

Commit

Permalink
fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinWeindel committed Apr 3, 2019
1 parent c8e6d88 commit 55bdf96
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pkg/controller/provider/openstack/handler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@ type testzone struct {
nextID int
}

var _ provider.DNSHostedZone = &testzone{}

func (tz *testzone) ProviderType() string {
return "test"
}

func (tz *testzone) buildNextId() string {
d := fmt.Sprintf("rs-%04d", tz.nextID)
tz.nextID++
Expand Down

0 comments on commit 55bdf96

Please sign in to comment.