Fix for DriverMock not implementing Driver

This commit is contained in:
Ben Phegan 2017-03-23 12:11:19 +11:00
parent 7e8724c1b3
commit 0c777a1d63
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ type DriverMock struct {
VersionErr error
}
func (d *DriverMock) CreateSATAController(vm string, controller string) error {
func (d *DriverMock) CreateSATAController(vm string, controller string, portcount int) error {
d.CreateSATAControllerVM = vm
d.CreateSATAControllerController = vm
return d.CreateSATAControllerErr