Remove unused mock function

This commit is contained in:
Ole Markus With 2020-08-20 20:45:51 +02:00
parent 36fb150105
commit cb005902b2
1 changed files with 0 additions and 4 deletions

View File

@ -170,10 +170,6 @@ func (c *MockCloud) AttachVolume(serverID string, opts volumeattach.CreateOpts)
return attachVolume(c, serverID, opts) return attachVolume(c, serverID, opts)
} }
func (c *MockCloud) CreateFloatingIP(opts floatingips.CreateOpts) (fip *floatingips.FloatingIP, err error) {
return createFloatingIP(c, opts)
}
func (c *MockCloud) CreateInstance(opt servers.CreateOptsBuilder) (*servers.Server, error) { func (c *MockCloud) CreateInstance(opt servers.CreateOptsBuilder) (*servers.Server, error) {
return createInstance(c, opt) return createInstance(c, opt)
} }